isRegular static method

bool isRegular(
  1. int byte
)

Implementation

static bool isRegular(int byte) => byte >= 0 && !isWhitespace(byte) && !isDelimiter(byte);