definition:
|
isFailed :: AExpr a -> Bool
isFailed e = case e of
AComb _ FuncCall (("Prelude", "failed"), _) [] -> True
_ -> False
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Is the given expression equal to `failed`?
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({AComb}) |-> _ || ({AVar}) |-> _ || ({ALit}) |-> _ || ({ALet}) |-> _ || ({AFree}) |-> _ || ({AOr}) |-> _ || ({ACase}) |-> _ || ({ATyped}) |-> _}
|
name:
|
isFailed
|
precedence:
|
no precedence defined
|
result-values:
|
{False,True}
|
signature:
|
FlatCurry.Annotated.Types.AExpr a -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|