hexDigitForChar static method

bool hexDigitForChar(
  1. Rune ch
)

Get the Hex_Digit value for a given character, using compiled data

See the Rust documentation for for_char for more information.

Implementation

static bool hexDigitForChar(Rune ch) {
  final result = _icu4x_CodePointSetData_hex_digit_for_char_mv1(ch);
  return result;
}