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