Itoyori  v0.0.1
parallel_search.hpp File Reference
Include dependency graph for parallel_search.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 ityr
 

Functions

template<typename ExecutionPolicy , typename ForwardIterator , typename Compare >
ForwardIterator ityr::min_element (const ExecutionPolicy &policy, ForwardIterator first, ForwardIterator last, Compare comp)
 Search for the minimum element in a range. More...
 
template<typename ExecutionPolicy , typename ForwardIterator >
ForwardIterator ityr::min_element (const ExecutionPolicy &policy, ForwardIterator first, ForwardIterator last)
 Search for the minimum element in a range. More...
 
template<typename ExecutionPolicy , typename ForwardIterator , typename Compare >
ForwardIterator ityr::max_element (const ExecutionPolicy &policy, ForwardIterator first, ForwardIterator last, Compare comp)
 Search for the maximum element in a range. More...
 
template<typename ExecutionPolicy , typename ForwardIterator >
ForwardIterator ityr::max_element (const ExecutionPolicy &policy, ForwardIterator first, ForwardIterator last)
 Search for the maximum element in a range. More...
 
template<typename ExecutionPolicy , typename ForwardIterator , typename Compare >
std::pair< ForwardIterator, ForwardIterator > ityr::minmax_element (const ExecutionPolicy &policy, ForwardIterator first, ForwardIterator last, Compare comp)
 Search for the minimum and maximum element in a range. More...
 
template<typename ExecutionPolicy , typename ForwardIterator >
std::pair< ForwardIterator, ForwardIterator > ityr::minmax_element (const ExecutionPolicy &policy, ForwardIterator first, ForwardIterator last)
 Search for the minimum and maximum element in a range. More...