definition: |
isComb :: Expr -> Bool isComb e = case e of Comb _ _ _ -> True _ -> False |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- is expression combined? |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Comb}) |-> {True} || ({Var}) |-> _ || ({Lit}) |-> _ || ({Let}) |-> _ || ({Free}) |-> _ || ({Or}) |-> _ || ({Case}) |-> _ || ({Typed}) |-> _} |
name: |
isComb |
precedence: |
no precedence defined |
result-values: |
{False,True} |
signature: |
FlatCurry.Types.Expr -> Prelude.Bool |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |