isDigit1_9 function

bool isDigit1_9(
  1. int c
)

Implementation

bool isDigit1_9(int c) => c >= 0x31 && c <= 0x39;