isStop method

bool isStop(
  1. int col
)

Returns whether col is a tab stop.

Implementation

bool isStop(int col) {
  final mask = _mask(col);
  final i = col >> 3;
  if (i < 0 || i >= stops.length) return false;
  return (stops[i] & mask) != 0;
}