glog function

int glog(
  1. int n
)

Implementation

int glog(int n) => (n >= 1) ? _logTable[n] : throw ArgumentError.value(n, "n", "must be >= 1");