cellGetContent method

int cellGetContent(
  1. int index
)
override

Implementation

int cellGetContent(int index) {
  if (index > _maxCols) {
    return 0;
  }
  return _cells.getUint32(index * _cellSize + _cellContent);
}