fix doc example typo
[boost.git] / boost / bimap / views / list_set_view.hpp
blob4b5887f0d857b6c97a73d0a7fd18c2c8c99c4aad
1 // Boost.Bimap
2 //
3 // Copyright (c) 2006-2007 Matias Capeletto
4 //
5 // Distributed under the Boost Software License, Version 1.0.
6 // (See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt)
9 /// \file views/list_set_view.hpp
10 /// \brief View of a side of a bimap that is signature compatible with std::list.
12 #ifndef BOOST_BIMAP_VIEWS_LIST_SET_VIEW_HPP
13 #define BOOST_BIMAP_VIEWS_LIST_SET_VIEW_HPP
15 #if defined(_MSC_VER) && (_MSC_VER>=1200)
16 #pragma once
17 #endif
19 #include <boost/config.hpp>
21 #include <boost/bimap/container_adaptor/list_adaptor.hpp>
22 #include <boost/bimap/detail/set_view_base.hpp>
24 namespace boost {
25 namespace bimaps {
26 namespace views {
28 /// \brief View of a bimap that is signature compatible with std::list.
29 /**
31 This class uses container_adaptor and iterator_adaptor to wrapped a index of the
32 multi_index bimap core so it can be used as a std::list.
34 See also const_list_set_view.
35 **/
37 template< class CoreIndex >
38 class list_set_view
40 public BOOST_BIMAP_SEQUENCED_SET_VIEW_CONTAINER_ADAPTOR(
41 list_adaptor,
42 CoreIndex,
43 reverse_iterator, const_reverse_iterator
46 public ::boost::bimaps::detail::
47 set_view_base< list_set_view< CoreIndex >, CoreIndex >
49 BOOST_BIMAP_SET_VIEW_BASE_FRIEND(list_set_view,CoreIndex)
51 typedef BOOST_BIMAP_SEQUENCED_SET_VIEW_CONTAINER_ADAPTOR(
52 list_adaptor,
53 CoreIndex,
54 reverse_iterator, const_reverse_iterator
56 ) base_;
58 public:
60 list_set_view(BOOST_DEDUCED_TYPENAME base_::base_type & c) :
61 base_(c) {}
63 list_set_view & operator=(const list_set_view & v)
65 this->base() = v.base();
66 return *this;
69 BOOST_BIMAP_VIEW_ASSIGN_IMPLEMENTATION(base_)
71 BOOST_BIMAP_VIEW_FRONT_BACK_IMPLEMENTATION(base_)
73 // Rearrange Operations
75 void relocate(BOOST_DEDUCED_TYPENAME base_::iterator position,
76 BOOST_DEDUCED_TYPENAME base_::iterator i)
78 this->base().relocate(
79 this->template functor<
80 BOOST_DEDUCED_TYPENAME base_::iterator_to_base>()(position),
81 this->template functor<
82 BOOST_DEDUCED_TYPENAME base_::iterator_to_base>()(i)
86 void relocate(BOOST_DEDUCED_TYPENAME base_::iterator position,
87 BOOST_DEDUCED_TYPENAME base_::iterator first,
88 BOOST_DEDUCED_TYPENAME base_::iterator last)
90 this->base().relocate(
91 this->template functor<
92 BOOST_DEDUCED_TYPENAME base_::iterator_to_base>()(position),
93 this->template functor<
94 BOOST_DEDUCED_TYPENAME base_::iterator_to_base>()(first),
95 this->template functor<
96 BOOST_DEDUCED_TYPENAME base_::iterator_to_base>()(last)
102 } // namespace views
103 } // namespace bimaps
104 } // namespace boost
107 #endif // BOOST_BIMAP_VIEWS_LIST_SET_VIEW_HPP