]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / include / ext / pb_ds / detail / binary_heap_ / point_const_iterator.hpp
CommitLineData
4569a895
AT
1// -*- C++ -*-
2
aa118a03 3// Copyright (C) 2005-2014 Free Software Foundation, Inc.
4569a895
AT
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the terms
7// of the GNU General Public License as published by the Free Software
748086b7 8// Foundation; either version 3, or (at your option) any later
4569a895
AT
9// version.
10
11// This library is distributed in the hope that it will be useful, but
12// WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// General Public License for more details.
15
748086b7
JJ
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
4569a895 19
748086b7
JJ
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
4569a895
AT
24
25// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
26
27// Permission to use, copy, modify, sell, and distribute this software
28// is hereby granted without fee, provided that the above copyright
29// notice appears in all copies, and that both that copyright notice
30// and this permission notice appear in supporting documentation. None
31// of the above authors, nor IBM Haifa Research Laboratories, make any
32// representation about the suitability of this software for any
33// purpose. It is provided "as is" without express or implied
34// warranty.
35
36/**
a345e45d 37 * @file binary_heap_/point_const_iterator.hpp
4569a895 38 * Contains an iterator class returned by the table's const find and insert
a345e45d 39 * methods.
4569a895
AT
40 */
41
42#ifndef PB_DS_BINARY_HEAP_CONST_FIND_ITERATOR_HPP
43#define PB_DS_BINARY_HEAP_CONST_FIND_ITERATOR_HPP
44
45#include <ext/pb_ds/tag_and_trait.hpp>
47bea7b8 46#include <debug/debug.h>
4569a895 47
5e11f978 48namespace __gnu_pbds
4569a895
AT
49{
50 namespace detail
51 {
30a96b3b 52 /// Const point-type iterator.
beb5d0f4 53 template<typename Value_Type, typename Entry, bool Simple,
a345e45d
BK
54 typename _Alloc>
55 class binary_heap_point_const_iterator_
4569a895 56 {
4569a895 57 protected:
a345e45d 58 typedef typename _Alloc::template rebind<Entry>::other::pointer entry_pointer;
4569a895
AT
59
60 public:
30a96b3b 61 /// Category.
4569a895
AT
62 typedef trivial_iterator_tag iterator_category;
63
30a96b3b 64 /// Difference type.
4569a895
AT
65 typedef trivial_iterator_difference_type difference_type;
66
30a96b3b 67 /// Iterator's value type.
4569a895
AT
68 typedef Value_Type value_type;
69
30a96b3b 70 /// Iterator's pointer type.
a345e45d 71 typedef typename _Alloc::template rebind<value_type>::other::pointer
4569a895
AT
72 pointer;
73
30a96b3b 74 /// Iterator's const pointer type.
4569a895 75 typedef
a345e45d 76 typename _Alloc::template rebind<value_type>::other::const_pointer
4569a895
AT
77 const_pointer;
78
30a96b3b 79 /// Iterator's reference type.
4569a895 80 typedef
a345e45d 81 typename _Alloc::template rebind<value_type>::other::reference
4569a895
AT
82 reference;
83
30a96b3b 84 /// Iterator's const reference type.
4569a895 85 typedef
a345e45d 86 typename _Alloc::template rebind<value_type>::other::const_reference
4569a895
AT
87 const_reference;
88
4569a895 89 inline
a345e45d 90 binary_heap_point_const_iterator_(entry_pointer p_e) : m_p_e(p_e)
4569a895
AT
91 { }
92
30a96b3b 93 /// Default constructor.
4569a895 94 inline
a345e45d 95 binary_heap_point_const_iterator_() : m_p_e(0) { }
4569a895 96
30a96b3b 97 /// Copy constructor.
4569a895 98 inline
a345e45d 99 binary_heap_point_const_iterator_(const binary_heap_point_const_iterator_& other)
47bea7b8 100 : m_p_e(other.m_p_e)
4569a895
AT
101 { }
102
30a96b3b 103 /// Access.
4569a895
AT
104 inline const_pointer
105 operator->() const
106 {
8fc81078 107 _GLIBCXX_DEBUG_ASSERT(m_p_e != 0);
beb5d0f4 108 return to_ptr(integral_constant<int, Simple>());
4569a895
AT
109 }
110
30a96b3b 111 /// Access.
4569a895
AT
112 inline const_reference
113 operator*() const
114 {
8fc81078 115 _GLIBCXX_DEBUG_ASSERT(m_p_e != 0);
beb5d0f4 116 return *to_ptr(integral_constant<int, Simple>());
4569a895
AT
117 }
118
30a96b3b 119 /// Compares content to a different iterator object.
4569a895 120 inline bool
a345e45d 121 operator==(const binary_heap_point_const_iterator_& other) const
47bea7b8 122 { return m_p_e == other.m_p_e; }
4569a895 123
30a96b3b 124 /// Compares content (negatively) to a different iterator object.
4569a895 125 inline bool
a345e45d 126 operator!=(const binary_heap_point_const_iterator_& other) const
47bea7b8 127 { return m_p_e != other.m_p_e; }
4569a895
AT
128
129 private:
130 inline const_pointer
131 to_ptr(true_type) const
47bea7b8 132 { return m_p_e; }
4569a895
AT
133
134 inline const_pointer
135 to_ptr(false_type) const
47bea7b8 136 { return *m_p_e; }
4569a895
AT
137
138 public:
139 entry_pointer m_p_e;
140 };
4569a895 141 } // namespace detail
5e11f978 142} // namespace __gnu_pbds
4569a895 143
47bea7b8 144#endif