Merge -r 127928:132243 from trunk
[official-gcc.git] / libstdc++-v3 / include / tr1_impl / array
blob7a13ba8ff8df543d5f30806bee3709a7a9e43c12
1 // class template array -*- C++ -*-
3 // Copyright (C) 2007 Free Software Foundation, Inc.
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
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING.  If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction.  Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License.  This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
30 /** @file tr1_impl/array
31  *  This is an internal header file, included by other library headers.
32  *  You should not attempt to use it directly.
33  */
35 namespace std
37 _GLIBCXX_BEGIN_NAMESPACE_TR1
39   /// @brief  struct array.
40   /// NB: Requires complete type _Tp.
41   template<typename _Tp, std::size_t _Nm>
42     struct array
43     {
44       typedef _Tp                                     value_type;
45       typedef value_type&                             reference;
46       typedef const value_type&                       const_reference;
47       typedef value_type*                             iterator;
48       typedef const value_type*                       const_iterator;
49       typedef std::size_t                             size_type;
50       typedef std::ptrdiff_t                          difference_type;
51       typedef std::reverse_iterator<iterator>         reverse_iterator;
52       typedef std::reverse_iterator<const_iterator>   const_reverse_iterator;
54       // Support for zero-sized arrays mandatory.
55       value_type _M_instance[_Nm ? _Nm : 1];
57       // No explicit construct/copy/destroy for aggregate type.
59       void 
60       assign(const value_type& __u)
61       { std::fill_n(begin(), size(), __u); }
63       void 
64       swap(array& __other)
65       { std::swap_ranges(begin(), end(), __other.begin()); }
67       // Iterators.
68       iterator
69       begin()
70       { return iterator(&_M_instance[0]); }
72       const_iterator
73       begin() const 
74       { return const_iterator(&_M_instance[0]); }
76       iterator
77       end() 
78       { return iterator(&_M_instance[_Nm]); }
80       const_iterator
81       end() const
82       { return const_iterator(&_M_instance[_Nm]); }
84       reverse_iterator 
85       rbegin()
86       { return reverse_iterator(end()); }
88       const_reverse_iterator 
89       rbegin() const
90       { return const_reverse_iterator(end()); }
92       reverse_iterator 
93       rend()
94       { return reverse_iterator(begin()); }
96       const_reverse_iterator 
97       rend() const
98       { return const_reverse_iterator(begin()); }
100 #ifdef _GLIBCXX_INCLUDE_AS_CXX0X
101       const_iterator
102       cbegin() const 
103       { return const_iterator(&_M_instance[0]); }
105       const_iterator
106       cend() const
107       { return const_iterator(&_M_instance[_Nm]); }
109       const_reverse_iterator 
110       crbegin() const
111       { return const_reverse_iterator(end()); }
113       const_reverse_iterator 
114       crend() const
115       { return const_reverse_iterator(begin()); }
116 #endif
118       // Capacity.
119       size_type 
120       size() const { return _Nm; }
122       size_type 
123       max_size() const { return _Nm; }
125       bool 
126       empty() const { return size() == 0; }
128       // Element access.
129       reference
130       operator[](size_type __n)
131       { return _M_instance[__n]; }
133       const_reference
134       operator[](size_type __n) const
135       { return _M_instance[__n]; }
137       reference
138       at(size_type __n)
139       {
140         if (__builtin_expect(__n >= _Nm, false))
141           std::__throw_out_of_range(__N("array::at"));
142         return _M_instance[__n];
143       }
145       const_reference
146       at(size_type __n) const
147       {
148         if (__builtin_expect(__n >= _Nm, false))
149           std::__throw_out_of_range(__N("array::at"));
150         return _M_instance[__n];
151       }
153       reference 
154       front()
155       { return *begin(); }
157       const_reference 
158       front() const
159       { return *begin(); }
161       reference 
162       back()
163       { return _Nm ? *(end() - 1) : *end(); }
165       const_reference 
166       back() const
167       { return _Nm ? *(end() - 1) : *end(); }
169       _Tp* 
170       data()
171       { return &_M_instance[0]; }
173       const _Tp* 
174       data() const
175       { return &_M_instance[0]; }
176     };
178   // Array comparisons.
179   template<typename _Tp, std::size_t _Nm>
180     inline bool 
181     operator==(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
182     { return std::equal(__one.begin(), __one.end(), __two.begin()); }
184   template<typename _Tp, std::size_t _Nm>
185     inline bool
186     operator!=(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
187     { return !(__one == __two); }
189   template<typename _Tp, std::size_t _Nm>
190     inline bool
191     operator<(const array<_Tp, _Nm>& __a, const array<_Tp, _Nm>& __b)
192     { 
193       return std::lexicographical_compare(__a.begin(), __a.end(),
194                                           __b.begin(), __b.end()); 
195     }
197   template<typename _Tp, std::size_t _Nm>
198     inline bool
199     operator>(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
200     { return __two < __one; }
202   template<typename _Tp, std::size_t _Nm>
203     inline bool
204     operator<=(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
205     { return !(__one > __two); }
207   template<typename _Tp, std::size_t _Nm>
208     inline bool
209     operator>=(const array<_Tp, _Nm>& __one, const array<_Tp, _Nm>& __two)
210     { return !(__one < __two); }
212   // Specialized algorithms [6.2.2.2].
213   template<typename _Tp, std::size_t _Nm>
214     inline void
215     swap(array<_Tp, _Nm>& __one, array<_Tp, _Nm>& __two)
216     { std::swap_ranges(__one.begin(), __one.end(), __two.begin()); }
218   // Tuple interface to class template array [6.2.2.5].
219   template<typename _Tp> class tuple_size;
220   template<int _Int, typename _Tp> class tuple_element;
222   template<typename _Tp, std::size_t _Nm>
223     struct tuple_size<array<_Tp, _Nm> >
224     { static const int value = _Nm; };
226   template<typename _Tp, std::size_t _Nm>
227     const int tuple_size<array<_Tp, _Nm> >::value;
229   template<int _Int, typename _Tp, std::size_t _Nm>
230     struct tuple_element<_Int, array<_Tp, _Nm> >
231     { typedef _Tp type; };
233   template<int _Int, typename _Tp, std::size_t _Nm>
234     inline _Tp&
235     get(array<_Tp, _Nm>& __arr)
236     { return __arr[_Int]; }
238   template<int _Int, typename _Tp, std::size_t _Nm>
239     inline const _Tp&
240     get(const array<_Tp, _Nm>& __arr)
241     { return __arr[_Int]; }
243 _GLIBCXX_END_NAMESPACE_TR1