definition:
|
reduceVerbose :: ReplState -> ReplState
reduceVerbose rst = rst { verbose = redVerb (verbose rst) }
where
redVerb n | n == 0 = 0
| otherwise = n - 1
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Reduce verbosity in the REPL state.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({ReplState}) |-> {ReplState}}
|
name:
|
reduceVerbose
|
precedence:
|
no precedence defined
|
result-values:
|
{ReplState}
|
signature:
|
REPL.State.ReplState -> REPL.State.ReplState
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|