rcToIndex static method

int rcToIndex(
  1. int r,
  2. int c,
  3. int cols
)

Implementation

static int rcToIndex(int r, int c, int cols) => r * cols + c;