You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to_digit converts an ascii char of the range 0-z (or 0-Z) to a number in the range 0-35, is_digit on the other hand returns true if the character lies in one of the 3 numeric unicode ranges (of wich only one represents the numbers 0-9 as such).
Possible solution: rename and create to_digit_ascii and is_digit_ascii, and move/rename is_digit to the unicodenamespace?
The text was updated successfully, but these errors were encountered:
to_digit
converts an ascii char of the range 0-z (or 0-Z) to a number in the range 0-35,is_digit
on the other hand returns true if the character lies in one of the 3 numeric unicode ranges (of wich only one represents the numbers 0-9 as such).Possible solution: rename and create
to_digit_ascii
andis_digit_ascii
, and move/renameis_digit
to theunicode
namespace?The text was updated successfully, but these errors were encountered: