definition:
|
liftNewFun :: FuncDecl -> LiftingState FuncDecl
liftNewFun (Func fn ar vis texp rule) = do
nrule <- liftRule rule
return $ Func fn ar vis texp nrule
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Lift newly introduced function.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Func}) |-> _}
|
name:
|
liftNewFun
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
FlatCurry.Types.FuncDecl
-> Control.Monad.Trans.State.StateT LiftState Data.Functor.Identity.Identity FlatCurry.Types.FuncDecl
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|