isControl function

bool isControl(
  1. int character
)

Checks if a character is in the Unicode codespace 'control' (Cc).

Implementation

bool isControl(int character) => _getCategory(character) == control;