definition: |
withExp :: CExpr -> CExpr withExp e = e -- the subexpression is the entire expression withExp e = CApply (withExp e) _ withExp e = CApply _ (withExp e) withExp e = CLambda _ (withExp e) withExp e = CLetDecl _ (withExp e) withExp e = CLetDecl (_ ++ [ldeclWithExp e] ++ _) _ withExp e = CDoExpr (_ ++ [statWithExp e] ++ _) withExp e = CListComp (withExp e) _ withExp e = CListComp _ (_ ++ [statWithExp e] ++ _) withExp e = CCase _ (withExp e) _ withExp e = CCase _ _ (_ ++ [(_,rhsWithExp e)] ++ _) withExp e = CTyped (withExp e) _ withExp e = CRecConstr _ (_ ++ [(_, withExp e)] ++ _) withExp e = CRecUpdate _ (_ ++ [(_, withExp e)] ++ _) |
demand: |
no demanded arguments |
deterministic: |
possibly non-deterministic operation |
documentation: |
--- Returns (non-deterministically) some expression that contains --- the given expression as a subexpression. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
withExp |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
AbstractCurry.Types.CExpr -> AbstractCurry.Types.CExpr |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |