log static method

int log(
  1. int a
)

Implementation

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