Adobe Source Libraries 2.0.0
A collection of C++ libraries.
Loading...
Searching...
No Matches
minmax.hpp File Reference

Go to the source code of this file.

Namespaces

namespace  adobe

Functions

template<class T, class R>
const T & min (const T &a, const T &b, R r)
 minmax implementation
template<class T, class R>
T & min (T &a, T &b, R r)
 minmax implementation
template<class T>
const T & min (const T &a, const T &b)
 minmax implementation
template<class T>
T & min (T &a, T &b)
 minmax implementation
template<class T, class R>
const T & max (const T &a, const T &b, R r)
 minmax implementation
template<class T, class R>
T & max (T &a, T &b, R r)
 minmax implementation
template<class T>
const T & max (const T &a, const T &b)
 minmax implementation
template<class T>
T & max (T &a, T &b)
 minmax implementation
template<class ForwardRange>
boost::range_iterator< ForwardRange >::type min_element (ForwardRange &range)
 minmax implementation
template<class ForwardRange>
boost::range_const_iterator< ForwardRange >::type min_element (const ForwardRange &range)
 minmax implementation
template<class ForwardIterator, class R>
ForwardIterator min_element (ForwardIterator first, ForwardIterator last, R r)
 minmax implementation
template<class ForwardRange, class R>
boost::range_iterator< ForwardRange >::type min_element (ForwardRange &range, R r)
 minmax implementation
template<class ForwardRange, class R>
boost::range_const_iterator< ForwardRange >::type min_element (const ForwardRange &range, R r)
 minmax implementation
template<class ForwardRange>
boost::range_iterator< ForwardRange >::type max_element (ForwardRange &range)
 minmax implementation
template<class ForwardRange>
boost::range_const_iterator< ForwardRange >::type max_element (const ForwardRange &range)
 minmax implementation
template<class ForwardIterator, class R>
ForwardIterator max_element (ForwardIterator first, ForwardIterator last, R r)
 minmax implementation
template<class ForwardRange, class R>
boost::range_iterator< ForwardRange >::type max_element (ForwardRange &range, R r)
 minmax implementation
template<class ForwardRange, class R>
boost::range_const_iterator< ForwardRange >::type max_element (const ForwardRange &range, R r)
 minmax implementation