type/operator - check for a functional operator
|
Calling Sequence
|
|
type(f, operator)
|
|
Description
|
|
•
|
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 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.
|
|
|
Examples
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
p := proc(x) option operator; x^3-5 end proc;
|
| (5) |
>
|
|
| (6) |
>
|
|
| (7) |
|
|
See Also
|
|
@, @@, convert/algebraic, D, examples/functionaloperators, operator, operators/D, operators/functional, ProgrammingGuide/MapleExpressions, type, unapply
|
|