isHexDigit function

bool isHexDigit(
  1. int c
)

Implementation

bool isHexDigit(int c) =>
    c >= 0x30 && c <= 0x39 || c >= 0x41 && c <= 0x46 || c >= 0x61 && c <= 0x66;