#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