type/union
check for an object of type union
type/minus
check for an object of type minus
type/intersect
check for an object of type intersect
type/subset
check for an object of type subset
Calling Sequence
Parameters
Description
Supertypes
Examples
type(expr, `union`)
type(expr, `minus`)
type(expr, `intersect`)
type(expr, `subset`)
expr
-
any expression
These procedures check to see if expr is a function of type union, minus, intersect, or subset respectively. See union for more information on these functions.
It is important to put quotes around the words union, minus, intersect, and subset as they are keywords. Not using quotes will cause a syntax error.
Note that in the case of the third example, the call to the minus function is made before the call to the type function, and therefore the return is false. The set difference, b, which is clearly not a function of type minus, is passed to the type function.
type/function
type⁡aunionb,`union`
true
type⁡`intersect`⁡a,b,c,`intersect`
type⁡a,b,cminusa,c,`minus`
false
type⁡asubsetb,`subset`
See Also
intersect
minus
subset
type
union
Download Help Document