CurryInfo: verify-non-fail-2.0.0 / Verify.WithSMT.ilog

definition: Info
 
ilog :: Int -> Int
ilog n | n>0 = if n<10 then 0 else 1 + ilog (n `div` 10)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
The value of `ilog n` is the floor of the logarithm
in the base 10 of `n`.
Fails if `n &lt;= 0`.
For positive integers, the returned value is
1 less the number of digits in the decimal representation of `n`.

@param n - The argument.
@return the floor of the logarithm in the base 10 of `n`.
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> _}
name: Info
 ilog
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Int -> Prelude.Int
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term