|
|
|
|
|
<Stack variable>.Info (Function) In french: <Variable Pile>.Info Retrieves the characteristics of a stack: types of elements and number of elements.
New in version 2025stMyClass is Structure MyClassProp is int END // Stack whose elements are instances of stMyClass MyStack is Stack of stMyClass // Retrieve the definition of the type of elements MyDefinition is Definition MyDefinition = MyStack.Info(tiElementDefinition)
Syntax
<Result> = <Stack name>.Info(<Information>)
<Result>: Variant Requested information. <Stack name>: Stack Name of the Stack variable to be used. <Information>: Integer constant Information to retrieve: | | tiElementDefinition | <Result> is a Definition variable and it contains the definition of the type of elements. | tiElementType | <Result> is an Integer variable and it contains the type of the elements found in the stack. This result is compatible with TypeVar. | tiTotalNumber | <Result> is an Integer variable and it contains the total number of elements in the stack. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|