| ELZED | Documentation | The Details | API |
| lzIsSymbolThe lzIsSymbol function determines whether or not the passed-in name identifies either an Elzed operator or an Elzed variable. All Elzed operators and variables can be processed by this function. bool lzIsSymbol( | char cScope, | | // the scope of the operator or variable | | const char* szSymbolName | | // the name of the operator or variable |
);
ParameterscScope | | A character code indicating the scope of the desired operator or variable. The character code must be one of the following values:
Code
|
Constant
|
Meaning
|
'C'
|
kCosmicScope
|
Available in all contexts
|
'G'
|
kGlobalScope
|
Available in current context only
|
'A'
|
kAnyScope
|
Either cosmic or global
|
|
szSymbolName | | A null-terminated character string containing the name of the desired operator or variable. |
Return Value | Returns TRUE if the requested operator or variable exists, FALSE otherwise. |
Remarks | The target operator or variable must exist in the current context and/or at the specified scope. |
Versions | Introduced in Elzed 1.2.0 Modified in Elzed 2.4.0 -- Symbol name parameter (char*) is now declared const. | | This page describes the version of lzIsSymbol active in Elzed 2.5.0 (212: 2.5.0) |
See Also |
| |