CurryInfo: rw-data-generator-2.0.0 / RW.Generator.logI

definition:
logI :: Int -> Int -> Int
logI b n | b == 1    = n
         | n <= b    = 1
         | otherwise = 1 + logI b (n `div` b)
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Logarithm to base b
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
logI
precedence:
no precedence defined
result-values:
_
signature:
Prelude.Int -> Prelude.Int -> Prelude.Int
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term