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.
f≔x↦3⋅x+5
typef,operator
true
g≔x,y↦sinx⋅cosy+y⋅x
typeg,operator
p := proc(x) option operator; x^3-5 end proc;
p ≔ procxoptionoperator;x3−5end proc
typep,operator
q := proc(x) x^3-5 end proc;
q ≔ procxx^3 − 5end proc
typeq,operator
false
See Also
@
@@
convert/algebraic
D
examples/functionaloperators
operator
operators/D
operators/functional
ProgrammingGuide/MapleExpressions
type
unapply
Download Help Document