decimalCodeUnit function
The ASCII code unit spelling digitValue, the inverse of decimalValue. Assumes 0-9, which
is what a validated digit sequence holds.
Implementation
int decimalCodeUnit(int digitValue) => digitValue + _asciiZero;
The ASCII code unit spelling digitValue, the inverse of decimalValue. Assumes 0-9, which
is what a validated digit sequence holds.
int decimalCodeUnit(int digitValue) => digitValue + _asciiZero;