@pragma('vm:prefer-inline') int? upLeftNeighborTile(int idx) => hasNeighborUp(idx) && hasNeighborLeft(idx) ? _data[idx - width - 1] : null;