| ELZED | Documentation | The Details | API |
| lzEvalExpHndlThe lzEvalExpHndl function evaluates a pre-parsed expression and returns the data type of the result. char lzEvalExpHndl( | LZObjectHandle hTheExpression | | // the expression to be evaluated |
);
ParametershTheExpression | | An LZObjectHandle identifying the expression to be evaluated. |
Return Value | A single-character code signifying the data type of the result. It will be one of the following:
Code
|
Constant
|
Meaning
|
'C'
|
kTypeComp
|
Complex number
|
'N'
|
kTypeNum
|
Numeric
|
'S'
|
kTypeStr
|
String
|
'B'
|
kTypeBool
|
Boolean
|
'X'
|
kTypeNone
|
No return value
|
|
Versions | Introduced in Elzed 1.2.0 Modified in Elzed 2.3.0 -- Dropped lCycles parameter. | | This page describes the version of lzEvalExpHndl active in Elzed 2.5.0 (123: 2.5.0) |
|
| |