match method

  1. @override
bool match(
  1. int value
)
override

Determines if the given Unicode code-point value belongs to this character class.

The behavior is undefined if the value is outside of the valid unicode code range.

Implementation

@override
bool match(int value) => data[value] & mask != 0;