chromium/third_party/icu/source/i18n/numparse_compositions.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 "numparse_types.h"
#include "numparse_compositions.h"
#include "string_segment.h"
#include "unicode/uniset.h"

usingnamespaceicu;
usingnamespaceicu::numparse;
usingnamespaceicu::numparse::impl;


bool SeriesMatcher::match(StringSegment& segment, ParsedNumber& result, UErrorCode& status) const {}

bool SeriesMatcher::smokeTest(const StringSegment& segment) const {}

void SeriesMatcher::postProcess(ParsedNumber& result) const {}


ArraySeriesMatcher::ArraySeriesMatcher()
        :{}

ArraySeriesMatcher::ArraySeriesMatcher(MatcherArray& matchers, int32_t matchersLen)
        :{}

int32_t ArraySeriesMatcher::length() const {}

const NumberParseMatcher* const* ArraySeriesMatcher::begin() const {}

const NumberParseMatcher* const* ArraySeriesMatcher::end() const {}

UnicodeString ArraySeriesMatcher::toString() const {}


#endif /* #if !UCONFIG_NO_FORMATTING */