type/local - check for a local variable
|
Calling Sequence
|
|
type(x, `local`)
type(x, `local`(t))
|
|
Parameters
|
|
x
|
-
|
any expression
|
t
|
-
|
type
|
|
|
|
|
Description
|
|
•
|
The call type(x,`local`) returns true if x is a local variable and false otherwise.
|
•
|
The name local 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.
|
|
|
Examples
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
f := proc() local a; a end proc:
|
>
|
|
| (3) |
>
|
|
| (4) |
|
|
Download Help Document
Was this information helpful?