CurryInfo: flatcurry-annotated-3.3.0 / FlatCurry.Annotated.Goodies.funcRHS

definition:
funcRHS :: AFuncDecl a -> [AExpr a]
funcRHS f | not (isExternal f) = orCase (funcBody f)
          | otherwise = []
 where
  orCase e
    | isOr e = concatMap orCase (orExps e)
    | isCase e = concatMap orCase (map branchExpr (caseBranches e))
    | otherwise = [e]
demand:
no demanded arguments
deterministic:
deterministic operation
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
funcRHS
precedence:
no precedence defined
result-values:
_
signature:
FlatCurry.Annotated.Types.AFuncDecl a -> [FlatCurry.Annotated.Types.AExpr a]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term