isFormat function

bool isFormat(
  1. int character
)

Checks if a character is in the Unicode codespace 'format' (Cf).

Implementation

bool isFormat(int character) => _getCategory(character) == format;