isgraph method

bool isgraph(
  1. String c
)

Checks if the character has a graphical representation (any printable character except space).

Implementation

bool isgraph(String c) {
  int code = _getCode(c);
  return code >= 33 && code <= 126;
}