getCodePoint method

int getCodePoint(
  1. int index
)

Implementation

int getCodePoint(int index) {
  return _data[index * _cellSize + _cellContent] & CellContent.codepointMask;
}