[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Find an item in the list
Source position: contnrs.pp line 541
public function TCustomBucketList.Find( |
AItem: Pointer; |
out AData: Pointer |
):Boolean; |
AItem |
|
Item to search for in the list |
AData |
|
On return, contains the data pointer associated with AItem. |
True if the item is present in the list.
Find searches for AItem in the list and returns the data pointer associated with it in AData if the item was found. In that case the return value is True. If AItem is not found in the list, False is returned.
|
Check if an item exists in the list. |