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

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

#include "unicode/utypes.h"

#if !UCONFIG_NO_FORMATTING

// Allow implicit conversion from char16_t* to UnicodeString for this file:
// Helpful in toString methods and elsewhere.
#define UNISTR_FROM_STRING_EXPLICIT

#include "unicode/numberrangeformatter.h"
#include "pluralranges.h"
#include "uresimp.h"
#include "charstr.h"
#include "uassert.h"
#include "util.h"
#include "numrange_impl.h"

U_NAMESPACE_BEGIN


namespace {

class PluralRangesDataSink : public ResourceSink {};

void getPluralRangesData(const Locale& locale, StandardPluralRanges& output, UErrorCode& status) {}

} // namespace


StandardPluralRanges
StandardPluralRanges::forLocale(const Locale& locale, UErrorCode& status) {}

StandardPluralRanges
StandardPluralRanges::copy(UErrorCode& status) const {}

LocalPointer<StandardPluralRanges>
StandardPluralRanges::toPointer(UErrorCode& status) && noexcept {}

void StandardPluralRanges::addPluralRange(
        StandardPlural::Form first,
        StandardPlural::Form second,
        StandardPlural::Form result) {}

void StandardPluralRanges::setCapacity(int32_t length, UErrorCode& status) {}

StandardPlural::Form
StandardPluralRanges::resolve(StandardPlural::Form first, StandardPlural::Form second) const {}


U_NAMESPACE_END

#endif /* #if !UCONFIG_NO_FORMATTING */