patternWhiteSpaceForChar static method

bool patternWhiteSpaceForChar(
  1. Rune ch
)

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

See the Rust documentation for for_char for more information.

Implementation

static bool patternWhiteSpaceForChar(Rune ch) {
  final result = _icu4x_CodePointSetData_pattern_white_space_for_char_mv1(ch);
  return result;
}