csplus.get_expression_info
|
This function gets size, type and value of an expression.
[Specification format]
csplus.get_expression_info(session_id, expression)
|
[Argument(s)]
|
|
session_id
|
This argument is ignored in this version.
|
expression
|
The expression to be evaluated
|
[Return value]
Size, type, value of the expression with format: size;type;value
Each information in the return string is described in below.
|
|
size
|
The size in byte of the target expression
|
type
|
The type of the target expression
|
value
|
The value of the specified expression
|
[Detailed description]
- | This function gets size, type and value of an expression. |
[Example of use]
>>> csplus.get_expression_info(0, "floatVar")
'4;float;10.1234'
|