TFPGMap.Find

Find item based on key

Declaration

Source position: fgl.pp line 330

public 
  function Find(const AKey: TKey; out Index: Integer) : Boolean;

Description

Find will search the key equal to AKey and return its index in AIndex. The return value of the function is True if an exact match for AKey is found, False otherwise.

The behaviour of Find is undefined if the map is not sorted. For unsorted maps, use IndexOf instead.

See also

Name Description
TFPGMap.IndexOf Find index of a key in the list.
TFPGMap.IndexOfData Find index of data value in the list.