log method

int log(
  1. int a
)

Implementation

int log(int a) {
  if (a == 0) {
    throw ArgumentError();
  }
  return _logTable[a];
}