#include "unicode/utypes.h"
#if !UCONFIG_NO_FORMATTING
#define UNISTR_FROM_STRING_EXPLICIT
#include "numparse_types.h"
#include "numparse_scientific.h"
#include "static_unicode_sets.h"
#include "string_segment.h"
usingnamespaceicu;
usingnamespaceicu::numparse;
usingnamespaceicu::numparse::impl;
namespace {
inline const UnicodeSet& minusSignSet() { … }
inline const UnicodeSet& plusSignSet() { … }
}
ScientificMatcher::ScientificMatcher(const DecimalFormatSymbols& dfs, const Grouper& grouper)
: … { … }
bool ScientificMatcher::match(StringSegment& segment, ParsedNumber& result, UErrorCode& status) const { … }
bool ScientificMatcher::smokeTest(const StringSegment& segment) const { … }
UnicodeString ScientificMatcher::toString() const { … }
#endif