chromium/third_party/icu/source/i18n/number_integerwidth.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"
#include "number_decimalquantity.h"

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

IntegerWidth::IntegerWidth(digits_t minInt, digits_t maxInt, bool formatFailIfMoreThanMaxDigits) {}

IntegerWidth IntegerWidth::zeroFillTo(int32_t minInt) {}

IntegerWidth IntegerWidth::truncateAt(int32_t maxInt) {}

void IntegerWidth::apply(impl::DecimalQuantity& quantity, UErrorCode& status) const {}

bool IntegerWidth::operator==(const IntegerWidth& other) const {}

#endif /* #if !UCONFIG_NO_FORMATTING */