Return a filtered list.
Source position: classesh.inc line 1014
public procedure TStrings.Filter( |
aFilter: TStringsFilterMethod; |
aList: TStrings |
); |
aFilter: TStringsFilterMethod |
):TStrings; |
Filter applies aFilter to each string in the list, and if aFilter returns True, adds the string to the aList list. If the aList argument is not supplied, the result is a TStringList instance that must be freed by the caller.
|
Callback signature for TStrings.Filter. |
|
|
Standard implementation of the TStrings class. |
|
|
Call a callback for each string in the list. |
|
|
Call a map routine for each string in the list. |
|
|
Get a reduced value from the string list. |
|
|
Reverse the order of the strings in the list. |