chromium/third_party/icu/source/i18n/number_grouping.cpp

// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html

#include "unicode/utypes.h"

#if !UCONFIG_NO_FORMATTING

#include "unicode/numberformatter.h"
#include "number_patternstring.h"
#include "uresimp.h"

usingnamespaceicu;
usingnamespaceicu::number;
usingnamespaceicu::number::impl;

namespace {

int16_t getMinGroupingForLocale(const Locale& locale) {}

}

Grouper Grouper::forStrategy(UNumberGroupingStrategy grouping) {}

Grouper Grouper::forProperties(const DecimalFormatProperties& properties) {}

void Grouper::setLocaleData(const impl::ParsedPatternInfo &patternInfo, const Locale& locale) {}

bool Grouper::groupAtPosition(int32_t position, const impl::DecimalQuantity &value) const {}

int16_t Grouper::getPrimary() const {}

int16_t Grouper::getSecondary() const {}

#endif /* #if !UCONFIG_NO_FORMATTING */