HashTable.ContainsKey (METH) ¶ METHOD ContainsKey : COLLECTION_ERROR Check if the map contains the key itfKey . InOut: Scope Name Type Comment Return ContainsKey COLLECTION_ERROR Input itfKey IElement The key to check Output xResult BOOL True if the map contains itfKey
HashTableFactory.prvInstPoolExtendsFactor (PROP) ¶ PROPERTY prvInstPoolExtendsFactor : USINT
HashTableFactory.prvInstSize (PROP) ¶ PROPERTY prvInstSize : CAA.SIZE
LinkedListIterator.HasNext (METH) ¶ METHOD HasNext : BOOL Checks the next element. InOut: Scope Name Type Return HasNext BOOL
LinkedListIterator.Next (METH) ¶ METHOD Next : COLLECTION_ERROR Get the next element itfElement. Returns COLLECTION_ERROR.NO_MORE_ELEMENTS if the end of the iteration has been reached. InOut: Scope Name Type Return Next COLLECTION_ERROR Output itfElement IElement
ListIterator.HasNext (METH) ¶ METHOD HasNext : BOOL Checks the next element. InOut: Scope Name Type Return HasNext BOOL
ListIterator.Next (METH) ¶ METHOD Next : COLLECTION_ERROR Get the next element itfElement. Returns COLLECTION_ERROR.NO_MORE_ELEMENTS if the end of the iteration has been reached. InOut: Scope Name Type Return Next COLLECTION_ERROR Output itfElement IElement
SafeLinkedListIterator.Next (METH) ¶ METHOD Next : COLLECTION_ERROR Get the next element itfElement. The method MUST be called until the error NO_MORE_ELEMENTS or another error is returned. This is necessary so that prvInstRelease of the element is called safely for the last element. Returns COLLECTION_ERROR.NO_MORE_ELEMENTS if the end of the iteration has been reached or COLLECTION_ERROR.COLLECTION_CHANGED if the collection has been changed. InOut: Scope Name Type Return Next COLLECTION_ERROR Output itfElement IElement
SafeListIterator.Next (METH) ¶ METHOD Next : COLLECTION_ERROR Get the next element itfElement. The method MUST be called until the error NO_MORE_ELEMENTS or another error is returned. This is necessary so that prvInstRelease of the element is called safely for the last element. Returns COLLECTION_ERROR.NO_MORE_ELEMENTS if the end of the iteration has been reached or COLLECTION_ERROR.COLLECTION_CHANGED if the collection has been changed. InOut: Scope Name Type Return Next COLLECTION_ERROR Output itfElement IElement
HashTable.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