STXXL
1.4.0
|
The semantics of the algorithm is equivalent to the STL std::find.
Returns the first iterator i in the range [first, last) such that *i == value
. Returns last if no such iterator exists. To overlap I/O and computation nbuffers
are used (a value at least D is recommended). The size of the buffers is derived from the container that is pointed by the iterators.
begin | object of model of ext_random_access_iterator concept |
end | object of model of ext_random_access_iterator concept |
value | value that is equality comparable to the ExtIterator's value type |
nbuffers | number of buffers (blocks) for internal use (should be at least 2*D) |
i
in the range [begin,end) such that *( i
) == value
, if no such exists then end
EqualityComparable
is a model of STL EqualityComparable concept.ExtIterator
is a model of External Random Access Iterator.Equality
is defined between objects of type EqualityComparable
and objects of ExtIterator's
value type.[first, last) is a valid range.