definition:
|
printIfVerb :: TermDomain a => Int -> String -> VerifyStateM a ()
printIfVerb v s = do
opts <- getToolOptions
when (optVerb opts >= v) $ lift $ printInfoString s
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Prints a string with `printInfoString` if the verbosity is at least as
--- the given one.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
printIfVerb
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Analysis.TermDomain.TermDomain a => Prelude.Int -> String
-> Control.Monad.Trans.State.StateT (VerifyState a) Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|