type/protected
check for a protected name
Calling Sequence
Parameters
Description
Examples
type(x, protected)
x
-
any expression
The call type(x, protected) checks to see if the expression x is a name of type protected. It returns true if x is a protected name, and false otherwise.
Protection is used to prevent names from being modified by the user. Most of the Maple systems names are protected by default.
Names can be protected with the function protect; and protection can be removed with unprotect.
type⁡sin,protected
true
type⁡lhs,protected
type⁡f,protected
false
protect⁡f
See Also
protect
type
Download Help Document