Scroll to navigation

__gnu_parallel::__adjacent_find_selector(3cxx) __gnu_parallel::__adjacent_find_selector(3cxx)

NAME

__gnu_parallel::__adjacent_find_selector - Test predicate on two adjacent elements.

SYNOPSIS

Inherits __gnu_parallel::__generic_find_selector.

Public Member Functions


template<typename _RAIter1 , typename _RAIter2 , typename _Pred > std::pair< _RAIter1, _RAIter2 > _M_sequential_algorithm (_RAIter1 __begin1, _RAIter1 __end1, _RAIter2 __begin2, _Pred __pred)
Corresponding sequential algorithm on a sequence. template<typename _RAIter1 , typename _RAIter2 , typename _Pred > bool operator() (_RAIter1 __i1, _RAIter2 __i2, _Pred __pred)
Test on one position.

Detailed Description

Test predicate on two adjacent elements.

Definition at line 80 of file find_selectors.h.

Member Function Documentation

template<typename _RAIter1 , typename _RAIter2 , typename _Pred > std::pair<_RAIter1, _RAIter2> __gnu_parallel::__adjacent_find_selector::_M_sequential_algorithm (_RAIter1 __begin1, _RAIter1 __end1, _RAIter2 __begin2, _Pred __pred) [inline]

Corresponding sequential algorithm on a sequence.

Parameters

__begin1 Begin iterator of first sequence.
__end1 End iterator of first sequence.
__begin2 Begin iterator of second sequence.
__pred Find predicate.

Definition at line 105 of file find_selectors.h.

template<typename _RAIter1 , typename _RAIter2 , typename _Pred > bool __gnu_parallel::__adjacent_find_selector::operator() (_RAIter1 __i1, _RAIter2 __i2, _Pred __pred) [inline]

Test on one position.

Parameters

__i1 _Iterator on first sequence.
__i2 _Iterator on second sequence (unused).
__pred Find predicate.

Definition at line 90 of file find_selectors.h.

Author

Generated automatically by Doxygen for libstdc++ from the source code.

Sun Feb 7 2021 libstdc++