intersect - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


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

Calling Sequence

type(expr, `union`)

type(expr, `minus`)

type(expr, `intersect`)

type(expr, `subset`)

Parameters

expr

-

any expression

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, b, which is clearly not a function of type minus, is passed to the type function.

Supertypes

• 

type/function

Examples

typeaunionb,`union`

true

(1)

type`intersect`a,b,c,`intersect`

true

(2)

typea,b,cminusa,c,`minus`

false

(3)

typeasubsetb,`subset`

true

(4)

See Also

intersect

minus

subset

type

type/function

union