isBlankCodeUnit function

bool isBlankCodeUnit(
  1. int c
)

Returns true if c is a blank char code unit.

Implementation

bool isBlankCodeUnit(int c) {
  return c == _codeUnitSpace ||
      c == _codeUnitN ||
      c == _codeUnitT ||
      c == _codeUnitR;
}