diff --git a/reference/intl/intlchar.xml b/reference/intl/intlchar.xml index 5021151da4..18230fe82e 100644 --- a/reference/intl/intlchar.xml +++ b/reference/intl/intlchar.xml @@ -54,6 +54,12 @@ IntlChar::CODEPOINT_MAX 1114111 + + const + float + IntlChar::NO_NUMERIC_VALUE + -123456789 + const integer @@ -3670,6 +3676,13 @@ + + IntlChar::NO_NUMERIC_VALUE + + Special value that is returned by IntlChar::getNumericValue when no numeric value is defined for a code point. + + + IntlChar::PROPERTY_ALPHABETIC diff --git a/reference/intl/intlchar/getnumericvalue.xml b/reference/intl/intlchar/getnumericvalue.xml index 8a4e3b93f8..9c314a63f9 100644 --- a/reference/intl/intlchar/getnumericvalue.xml +++ b/reference/intl/intlchar/getnumericvalue.xml @@ -18,7 +18,7 @@ For characters without any numeric values in the Unicode Character Database, this function will return - float(-123456789). + IntlChar::NO_NUMERIC_VALUE. @@ -38,7 +38,7 @@ &reftitle.returnvalues; Numeric value of codepoint, - or float(-123456789) if none is defined. + or IntlChar::NO_NUMERIC_VALUE if none is defined.