os/ossrv/ossrv_pub/boost_apis/boost/next_prior.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  Boost next_prior.hpp header file  ---------------------------------------//
sl@0
     2
sl@0
     3
//  (C) Copyright Dave Abrahams and Daniel Walker 1999-2003. Distributed under the Boost
sl@0
     4
//  Software License, Version 1.0. (See accompanying file
sl@0
     5
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     6
sl@0
     7
//  See http://www.boost.org/libs/utility for documentation.
sl@0
     8
sl@0
     9
//  Revision History
sl@0
    10
//  13 Dec 2003  Added next(x, n) and prior(x, n) (Daniel Walker)
sl@0
    11
sl@0
    12
#ifndef BOOST_NEXT_PRIOR_HPP_INCLUDED
sl@0
    13
#define BOOST_NEXT_PRIOR_HPP_INCLUDED
sl@0
    14
sl@0
    15
#include <iterator>
sl@0
    16
sl@0
    17
namespace boost {
sl@0
    18
sl@0
    19
//  Helper functions for classes like bidirectional iterators not supporting
sl@0
    20
//  operator+ and operator-
sl@0
    21
//
sl@0
    22
//  Usage:
sl@0
    23
//    const std::list<T>::iterator p = get_some_iterator();
sl@0
    24
//    const std::list<T>::iterator prev = boost::prior(p);
sl@0
    25
//    const std::list<T>::iterator next = boost::next(prev, 2);
sl@0
    26
sl@0
    27
//  Contributed by Dave Abrahams
sl@0
    28
sl@0
    29
template <class T>
sl@0
    30
inline T next(T x) { return ++x; }
sl@0
    31
sl@0
    32
template <class T, class Distance>
sl@0
    33
inline T next(T x, Distance n)
sl@0
    34
{
sl@0
    35
    std::advance(x, n);
sl@0
    36
    return x;
sl@0
    37
}
sl@0
    38
sl@0
    39
template <class T>
sl@0
    40
inline T prior(T x) { return --x; }
sl@0
    41
sl@0
    42
template <class T, class Distance>
sl@0
    43
inline T prior(T x, Distance n)
sl@0
    44
{
sl@0
    45
    std::advance(x, -n);
sl@0
    46
    return x;
sl@0
    47
}
sl@0
    48
sl@0
    49
} // namespace boost
sl@0
    50
sl@0
    51
#endif  // BOOST_NEXT_PRIOR_HPP_INCLUDED