#include <sysc/packages/boost/detail/iterator.hpp>#include <algorithm>#include <vector>

Go to the source code of this file.
Namespaces | |
| namespace | boost |
Functions | |
| template<typename Iter1, typename Iter2> | |
| Iter1 | boost::begin (const std::pair< Iter1, Iter2 > &p) |
| template<typename Iter1, typename Iter2> | |
| Iter2 | boost::end (const std::pair< Iter1, Iter2 > &p) |
| template<typename Iter1, typename Iter2> | |
| boost::detail::iterator_traits < Iter1 >::difference_type | boost::size (const std::pair< Iter1, Iter2 > &p) |
| template<typename T> | |
| std::vector< T >::iterator | boost::begin (std::vector< T > &c) |
| template<typename T> | |
| std::vector< T >::const_iterator | boost::begin (const std::vector< T > &c) |
| template<typename T> | |
| std::vector< T >::iterator | boost::end (std::vector< T > &c) |
| template<typename T> | |
| std::vector< T >::const_iterator | boost::end (const std::vector< T > &c) |
| template<typename T> | |
| std::vector< T >::size_type | boost::size (const std::vector< T > &c) |
| template<class ForwardIterator, class T> | |
| void | boost::iota (ForwardIterator first, ForwardIterator last, T value) |
| template<typename Container, typename T> | |
| void | boost::iota (Container &c, const T &value) |
| template<typename Container, typename OutIter> | |
| OutIter | boost::copy (const Container &c, OutIter result) |
| template<typename Container1, typename Container2> | |
| bool | boost::equal (const Container1 &c1, const Container2 &c2) |
| template<typename Container> | |
| void | boost::sort (Container &c) |
| template<typename Container, typename Predicate> | |
| void | boost::sort (Container &c, const Predicate &p) |
| template<typename Container> | |
| void | boost::stable_sort (Container &c) |
| template<typename Container, typename Predicate> | |
| void | boost::stable_sort (Container &c, const Predicate &p) |
| template<typename InputIterator, typename Predicate> | |
| bool | boost::any_if (InputIterator first, InputIterator last, Predicate p) |
| template<typename Container, typename Predicate> | |
| bool | boost::any_if (const Container &c, Predicate p) |
| template<typename InputIterator, typename T> | |
| bool | boost::contains (InputIterator first, InputIterator last, T value) |
| template<typename Container, typename T> | |
| bool | boost::contains (const Container &c, const T &value) |
| template<typename InputIterator, typename Predicate> | |
| bool | boost::all (InputIterator first, InputIterator last, Predicate p) |
| template<typename Container, typename Predicate> | |
| bool | boost::all (const Container &c, Predicate p) |
| template<typename InputIterator, typename Predicate> | |
| bool | boost::none (InputIterator first, InputIterator last, Predicate p) |
| template<typename Container, typename Predicate> | |
| bool | boost::none (const Container &c, Predicate p) |
| template<typename Container, typename T> | |
| std::size_t | boost::count (const Container &c, const T &value) |
| template<typename Container, typename Predicate> | |
| std::size_t | boost::count_if (const Container &c, Predicate p) |
| template<typename ForwardIterator> | |
| bool | boost::is_sorted (ForwardIterator first, ForwardIterator last) |
| template<typename ForwardIterator, typename StrictWeakOrdering> | |
| bool | boost::is_sorted (ForwardIterator first, ForwardIterator last, StrictWeakOrdering comp) |
| template<typename Container> | |
| bool | boost::is_sorted (const Container &c) |
| template<typename Container, typename StrictWeakOrdering> | |
| bool | boost::is_sorted (const Container &c, StrictWeakOrdering comp) |
1.5.5