global - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


type/global

check for a global variable

 

Calling Sequence

Parameters

Description

Supertypes

Examples

Calling Sequence

type(x, `global`)

type(x, `global`(t))

Parameters

x

-

any expression

t

-

type

Description

• 

The call type(x, `global`) returns true if x is both of type symbol and a global variable, and false otherwise.

• 

The name global is a keyword and therefore it must be enclosed by backquotes in a call to type.

• 

If the parameter t is included, it will check that x is assigned something of that type.

Supertypes

• 

type/symbol

Examples

typex,`global`

true

(1)

typeconvertx,`local`,`global`

false

(2)

f := proc() global a; a end proc:

zf

za

(3)

typez,`global`

true

(4)

See Also

convert/global

convert/local

type

type/local

type/symbol

 


Download Help Document