log method

int log(
  1. int a
)

Implementation

int log(int a) {
  if (a == 0) throw const UCodeDecodeException("log(0)");
  return _log[a];
}