isFVS static method

bool isFVS(
  1. int codeUnit
)

Implementation

static bool isFVS(int codeUnit) {
  return (codeUnit >= Unicode.FVS1 && codeUnit <= Unicode.FVS3);
}