isDelimiter static method

bool isDelimiter(
  1. int byte
)

Implementation

static bool isDelimiter(int byte) => byte == 0x28 || byte == 0x29 || byte == 0x3C || byte == 0x3E || byte == 0x5B || byte == 0x5D || byte == 0x7B || byte == 0x7D || byte == 0x2F || byte == 0x25;