optional_last_value.hpp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // optional_last_value function object (documented as part of Boost.Signals2)
  2. // Copyright Frank Mori Hess 2007-2008.
  3. // Copyright Douglas Gregor 2001-2003.
  4. // Distributed under 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)
  7. // See http://www.boost.org/libs/signals2 for library home page.
  8. #ifndef BOOST_SIGNALS2_OPTIONAL_LAST_VALUE_HPP
  9. #define BOOST_SIGNALS2_OPTIONAL_LAST_VALUE_HPP
  10. #include <boost/optional.hpp>
  11. #include <boost/signals2/expired_slot.hpp>
  12. namespace boost {
  13. namespace signals2 {
  14. template<typename T>
  15. class optional_last_value
  16. {
  17. public:
  18. typedef optional<T> result_type;
  19. template<typename InputIterator>
  20. optional<T> operator()(InputIterator first, InputIterator last) const
  21. {
  22. optional<T> value;
  23. while (first != last)
  24. {
  25. try
  26. {
  27. value = *first;
  28. }
  29. catch(const expired_slot &) {}
  30. ++first;
  31. }
  32. return value;
  33. }
  34. };
  35. template<>
  36. class optional_last_value<void>
  37. {
  38. public:
  39. typedef void result_type;
  40. template<typename InputIterator>
  41. result_type operator()(InputIterator first, InputIterator last) const
  42. {
  43. while (first != last)
  44. {
  45. try
  46. {
  47. *first;
  48. }
  49. catch(const expired_slot &) {}
  50. ++first;
  51. }
  52. return;
  53. }
  54. };
  55. } // namespace signals2
  56. } // namespace boost
  57. #endif // BOOST_SIGNALS2_OPTIONAL_LAST_VALUE_HPP