chromium/third_party/icu/source/i18n/number_notation.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_types.h"

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


ScientificNotation Notation::scientific() {}

ScientificNotation Notation::engineering() {}

ScientificNotation::ScientificNotation(int8_t fEngineeringInterval, bool fRequireMinInt,
                                       impl::digits_t fMinExponentDigits,
                                       UNumberSignDisplay fExponentSignDisplay) {}

Notation Notation::compactShort() {}

Notation Notation::compactLong() {}

Notation Notation::simple() {}

ScientificNotation
ScientificNotation::withMinExponentDigits(int32_t minExponentDigits) const {}

ScientificNotation
ScientificNotation::withExponentSignDisplay(UNumberSignDisplay exponentSignDisplay) const {}

#endif /* #if !UCONFIG_NO_FORMATTING */