definition:
|
isPartCall :: CombType -> Bool
isPartCall ct = case ct of
ConsPartCall _ -> True
FuncPartCall _ -> True
_ -> False
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Check if given combination type is a partial call
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({ConsPartCall}) |-> {True} || ({FuncPartCall}) |-> {True} || ({FuncCall}) |-> _ || ({ConsCall}) |-> _}
|
name:
|
isPartCall
|
precedence:
|
no precedence defined
|
result-values:
|
{False,True}
|
signature:
|
FlatCurry.Types.CombType -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|