isWhitespace function

bool isWhitespace(
  1. int c
)

Implementation

bool isWhitespace(int c) => c == 0x9 || c == 0xa || c == 0xd || c == 0x20;