[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Return the key of an item
Source position: objects.pp line 436
function TSortedCollection.KeyOf( |
Item: Pointer |
):Pointer; virtual; |
KeyOfreturns the key associated with Item. TSortedCollectionreturns the item itself as the key, descendent objects can override this method to calculate a (unique) key based on the item passed (such as hash values).
Keysare used to sort the objects, they are used to search and sort the items in the collection. If descendent types override this method then it allows possibly for faster search/sort methods based on keys rather than on the objects themselves.
None.
|
Return index of an item in the collection. |
|
|
Compare two items in the collection. |