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
|
|
type(expr, `union`)
type(expr, `minus`)
type(expr, `intersect`)
type(expr, `subset`)
|
|
Description
|
|
•
|
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, , which is clearly not a function of type minus, is passed to the type function.
|
|
|
Examples
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
|
|
Download Help Document
Was this information helpful?