definition:
|
funOfApply :: TypeExpr -> Maybe QualIdent
funOfApply te = case te of ApplyType (ConstructorType qc) _ -> Just qc
ApplyType t1 _ -> funOfApply t1
_ -> Nothing
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({ApplyType}) |-> _ || ({ConstructorType}) |-> _ || ({VariableType}) |-> _ || ({TupleType}) |-> _ || ({ListType}) |-> _ || ({ArrowType}) |-> _ || ({ParenType}) |-> _ || ({ForallType}) |-> _}
|
name:
|
funOfApply
|
precedence:
|
no precedence defined
|
result-values:
|
{Just,Nothing}
|
signature:
|
CurryInterface.Types.TypeExpr -> Prelude.Maybe CurryInterface.Types.QualIdent
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|