// order of magnitude (to a max order) func oomm(n, b *big.Int, maxmag int) (float64, int) { … } // total order of magnitude // (same as above, but with no upper limit) func oom(n, b *big.Int) (float64, int) { … }
// order of magnitude (to a max order) func oomm(n, b *big.Int, maxmag int) (float64, int) { … } // total order of magnitude // (same as above, but with no upper limit) func oom(n, b *big.Int) (float64, int) { … }