definition:
|
addProgsToState :: [TAProg] -> VStateM ()
addProgsToState progs =
modify $ \vstate -> vstate { currTAProgs = currTAProgs vstate ++ progs }
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adds a new typed FlatCurry program to the state.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
addProgsToState
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[FlatCurry.Annotated.Types.AProg FlatCurry.Types.TypeExpr]
-> 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
|