|
|
|
|
|
<Queue variable>.Info (Function) In french: <Variable File>.Info Retrieves the characteristics of a queue: types of elements and number of elements.
New in version 2025// Queue whose elements are strings MyQueue is Queue of string // Retrieve the definition of the type of elements MyDefinition is Definition MyDefinition = MyQueue.Info(tiElementDefinition)
Syntax
<Result> = <Queue>.Info(<Information>)
<Result>: Variant Requested information. <Queue>: Queue variable Name of the Queue 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 queue. This result is compatible with TypeVar. | tiTotalNumber | <Result> is an Integer variable and it contains the total number of elements in the queue. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|