type/operator
check for a functional operator
Calling Sequence
Parameters
Description
Examples
type(f, operator)
f
-
any expression
A functional operator in Maple is a special form of a function. See operators/functional or refer to the Functional Operators section of the Maple Expressions chapter of the Maple Programming Guide for a full description of functional operators.
The call type(f, operator) returns true if f is a functional operator, and false otherwise.
p := proc(x) option operator; x^3-5 end proc;
q := proc(x) x^3-5 end proc;
See Also
@
@@
convert/algebraic
D
examples/functionaloperators
operator
operators/D
operators/functional
ProgrammingGuide/MapleExpressions
type
unapply
Download Help Document