isWS static method

bool isWS(
  1. int c
)

Implementation

static bool isWS(int c) => c == CC_SPACE || c == CC_CR || c == CC_LF;