Update contrib.
1 // last_value function object (documented as part of Boost.Signals)
3 // Copyright Douglas Gregor 2001-2003. Use, modification and
4 // distribution is subject to the Boost Software License, Version
5 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
8 // For more information, see http://www.boost.org/libs/signals
10 #ifndef BOOST_LAST_VALUE_HPP
11 #define BOOST_LAST_VALUE_HPP
18 typedef T result_type;
20 template<typename InputIterator>
21 T operator()(InputIterator first, InputIterator last) const
23 assert(first != last);
32 struct last_value<void> {
36 typedef unusable result_type;
38 template<typename InputIterator>
40 operator()(InputIterator first, InputIterator last) const
48 #endif // BOOST_SIGNALS_LAST_VALUE_HPP