definition:
|
whenOption :: (Options -> Bool) -> VStateM () -> VStateM ()
whenOption f = evalOption f id
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Gets an option and only executes the given monad if this option is true.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {evalOption}}
|
name:
|
whenOption
|
precedence:
|
no precedence defined
|
result-values:
|
{evalOption}
|
signature:
|
(ToolOptions.Options -> Prelude.Bool)
-> Control.Monad.Trans.State.StateT VState Prelude.IO ()
-> Control.Monad.Trans.State.StateT VState Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|