os/ossrv/ossrv_pub/boost_apis/boost/last_value.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// last_value function object (documented as part of Boost.Signals)
sl@0
     2
sl@0
     3
// Copyright Douglas Gregor 2001-2003. Use, modification and
sl@0
     4
// distribution is subject to the Boost Software License, Version
sl@0
     5
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     6
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
     7
sl@0
     8
// For more information, see http://www.boost.org/libs/signals
sl@0
     9
sl@0
    10
#ifndef BOOST_LAST_VALUE_HPP
sl@0
    11
#define BOOST_LAST_VALUE_HPP
sl@0
    12
sl@0
    13
#include <cassert>
sl@0
    14
sl@0
    15
namespace boost {
sl@0
    16
  template<typename T>
sl@0
    17
  struct last_value {
sl@0
    18
    typedef T result_type;
sl@0
    19
sl@0
    20
    template<typename InputIterator>
sl@0
    21
    T operator()(InputIterator first, InputIterator last) const
sl@0
    22
    {
sl@0
    23
      assert(first != last);
sl@0
    24
      T value = *first++;
sl@0
    25
      while (first != last)
sl@0
    26
        value = *first++;
sl@0
    27
      return value;
sl@0
    28
    }
sl@0
    29
  };
sl@0
    30
sl@0
    31
  template<>
sl@0
    32
  struct last_value<void> {
sl@0
    33
    struct unusable {};
sl@0
    34
sl@0
    35
  public:
sl@0
    36
    typedef unusable result_type;
sl@0
    37
sl@0
    38
    template<typename InputIterator>
sl@0
    39
    result_type
sl@0
    40
    operator()(InputIterator first, InputIterator last) const
sl@0
    41
    {
sl@0
    42
      while (first != last)
sl@0
    43
        *first++;
sl@0
    44
      return result_type();
sl@0
    45
    }
sl@0
    46
  };
sl@0
    47
}
sl@0
    48
#endif // BOOST_SIGNALS_LAST_VALUE_HPP