Returns whether col is a tab stop.
col
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; }