SortedListFactory.prvInstSize (PROP) ¶ PROPERTY prvInstSize : CAA.SIZE
Stack.AddElement (METH) ¶ METHOD AddElement : COLLECTION_ERROR Add the element itfElement to the collection. InOut: Scope Name Type Comment Return AddElement COLLECTION_ERROR Input itfElement IElement The element to add.
Stack.ContainsElement (METH) ¶ METHOD ContainsElement : COLLECTION_ERROR Check if the collection contains the element itfElement . InOut: Scope Name Type Comment Return ContainsElement COLLECTION_ERROR Input itfElement IElement The element to check Output xResult BOOL True if the collection contains itfElement
Stack.ContainsValue (METH) ¶ METHOD ContainsValue : COLLECTION_ERROR Checks if the collection contains the value of itfElement . This method calls ElementEquals of IElement to compare the element values. InOut: Scope Name Type Comment Return ContainsValue COLLECTION_ERROR Input itfElement IElement The element to check Output xResult BOOL True if the collection contains the value of itfElement
IMap.Values (METH) ¶ METHOD Values : COLLECTION_ERROR Returns an iterator over all values. InOut: Scope Name Type Return Values COLLECTION_ERROR Input itfIterator IIterator
IMap2.RemoveAllElements (METH) ¶ METHOD RemoveAllElements : COLLECTION_ERROR Remove all keys and values. InOut: Scope Name Type Return RemoveAllElements COLLECTION_ERROR
IMap3.SafeKeys (METH) ¶ METHOD SafeKeys : COLLECTION_ERROR Returns an thread safe iterator over all keys. InOut: Scope Name Type Return SafeKeys COLLECTION_ERROR Input itfIterator ISafeListIterator
IMap3.SafeValues (METH) ¶ METHOD SafeValues : COLLECTION_ERROR Returns an thread safe iterator over all values. InOut: Scope Name Type Return SafeValues COLLECTION_ERROR Input itfIterator ISafeListIterator
IQueue.Peek (METH) ¶ METHOD Peek : COLLECTION_ERROR Get the head of the queue. The element will not be removed. InOut: Scope Name Type Comment Return Peek COLLECTION_ERROR Output itfElement IElement The first element of the queue
IQueue.Poll (METH) ¶ METHOD Poll : COLLECTION_ERROR Get the head of the queue. The element will be removed from the queue. InOut: Scope Name Type Comment Return Poll COLLECTION_ERROR Output itfElement IElement The first element of the queue