get method

int get(
  1. int i
)

Implementation

int get(int i) {
  return base[i >> log_blksize][i % (1 << log_blksize)];
}