unset method

void unset(
  1. int x,
  2. int y
)

Implementation

void unset(int x, int y) {
  final offset = y * _rowSize + (x ~/ 32);
  _bits[offset] &= ~(1 << (x & 0x1f) & 0xFFFFFFFF);
}