|
Template Numerical Library version\ main:4e6e2c1
|
This page describes the lambda function signatures used in segment find operations.
The condition lambda determines whether an element within a segment satisfies the search condition. It has the following signature:
The lambda should return true if the element satisfies the search condition.
The result storer lambda manages the results of the search operation. It has the following signature:
This lambda is called for each processed segment. If found is true, localIdx points at the position in the segment where the element was found.
The segment condition lambda determines which segments should be searched. It has the following signature:
The lambda should return true if the segment should be searched.