]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/decimfmtimpl.h
ICU-62107.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / decimfmtimpl.h
index 76e8053bdc220d6c1acf8eaf470f2f30caa96a9d..945a32f29748b1bfa6b8d23e145bcc255fef6ef1 100644 (file)
@@ -345,6 +345,9 @@ void updatePrecision();
 void updateGrouping();
 void updateCurrency(UErrorCode &status);
 
+// Apple-specific
+UBool getFormatFullPrecision() const { return fFormatFullPrecision; }
+void setFormatFullPrecision(UBool formatFullPrecision) { fFormatFullPrecision = formatFullPrecision; }
 
 private:
 // Disallow copy and assign
@@ -415,6 +418,9 @@ SciFormatterOptions fOptions;   // Encapsulates fixed precision options
 DigitFormatter fFormatter;
 DigitAffixesAndPadding fAffixes;
 
+// Flag to cap double conversion precision at DBL_DIG digits (Apple specific)
+UBool fFormatFullPrecision;
+
 UnicodeString &formatInt32(
         int32_t number,
         UnicodeString &appendTo,