Unicode.digits-question-mark
You're seeing just the function
digits-question-mark, go back to Unicode module for more information.
Specs
digits?(codepoint_or_string()) :: boolean()
Returns true if a single Unicode codepoint (or all characters
in the given string) adhere to Unicode category :Nd
otherwise returns false.
This group of characters represents the decimal digits zero through nine (0..9) and the equivalents in non-Latin scripts.
Arguments
codepoint_or_stringis a single integer codepoint or aString.t.
Returns
trueorfalse
For the string-version, the result will be true only if all codepoints in the string adhere to the property.
For the string-version, the result will be true only if all codepoints in the string adhere to the property.