Get a reduced value from the string list.
Source position: classesh.inc line 1041
public function TStrings.Reduce( |
aReduceMethod: TStringsReduceMethod; |
const startingValue: string |
):string; |
Reduce iterates over all strings in the list and calls the aReduceMethod callback with 2 strings: the result of the previous iteration and the current string. The return value will be used in the next iteration, or will result in the end result of the method if the last string was reached.
|
Return a filtered list. |
|
|
Call a map routine for each string in the list. |
|
|
Call a callback for each string in the list. |
|
|
Reduce algorithm for TStrings.Reduce. |
|
|
Reverse the order of the strings in the list. |