xref: /llvm-project-15.0.7/libcxx/include/array (revision 1a78ae3c)
13e519524SHoward Hinnant// -*- C++ -*-
23e519524SHoward Hinnant//===---------------------------- array -----------------------------------===//
33e519524SHoward Hinnant//
45b08a8a4SHoward Hinnant//                     The LLVM Compiler Infrastructure
53e519524SHoward Hinnant//
6412dbebeSHoward Hinnant// This file is dual licensed under the MIT and the University of Illinois Open
7412dbebeSHoward Hinnant// Source Licenses. See LICENSE.TXT for details.
83e519524SHoward Hinnant//
93e519524SHoward Hinnant//===----------------------------------------------------------------------===//
103e519524SHoward Hinnant
113e519524SHoward Hinnant#ifndef _LIBCPP_ARRAY
123e519524SHoward Hinnant#define _LIBCPP_ARRAY
133e519524SHoward Hinnant
143e519524SHoward Hinnant/*
153e519524SHoward Hinnant    array synopsis
163e519524SHoward Hinnant
173e519524SHoward Hinnantnamespace std
183e519524SHoward Hinnant{
193e519524SHoward Hinnanttemplate <class T, size_t N >
203e519524SHoward Hinnantstruct array
213e519524SHoward Hinnant{
223e519524SHoward Hinnant    // types:
233e519524SHoward Hinnant    typedef T & reference;
243e519524SHoward Hinnant    typedef const T & const_reference;
253e519524SHoward Hinnant    typedef implementation defined iterator;
263e519524SHoward Hinnant    typedef implementation defined const_iterator;
273e519524SHoward Hinnant    typedef size_t size_type;
283e519524SHoward Hinnant    typedef ptrdiff_t difference_type;
293e519524SHoward Hinnant    typedef T value_type;
303e519524SHoward Hinnant    typedef T* pointer;
313e519524SHoward Hinnant    typedef const T* const_pointer;
323e519524SHoward Hinnant    typedef std::reverse_iterator<iterator> reverse_iterator;
333e519524SHoward Hinnant    typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
343e519524SHoward Hinnant
353e519524SHoward Hinnant    // No explicit construct/copy/destroy for aggregate type
363e519524SHoward Hinnant    void fill(const T& u);
37f07dd8d0SEric Fiselier    void swap(array& a) noexcept(is_nothrow_swappable_v<T>);
383e519524SHoward Hinnant
393e519524SHoward Hinnant    // iterators:
408f0cd597SHoward Hinnant    iterator begin() noexcept;
418f0cd597SHoward Hinnant    const_iterator begin() const noexcept;
428f0cd597SHoward Hinnant    iterator end() noexcept;
438f0cd597SHoward Hinnant    const_iterator end() const noexcept;
443e519524SHoward Hinnant
458f0cd597SHoward Hinnant    reverse_iterator rbegin() noexcept;
468f0cd597SHoward Hinnant    const_reverse_iterator rbegin() const noexcept;
478f0cd597SHoward Hinnant    reverse_iterator rend() noexcept;
488f0cd597SHoward Hinnant    const_reverse_iterator rend() const noexcept;
493e519524SHoward Hinnant
508f0cd597SHoward Hinnant    const_iterator cbegin() const noexcept;
518f0cd597SHoward Hinnant    const_iterator cend() const noexcept;
528f0cd597SHoward Hinnant    const_reverse_iterator crbegin() const noexcept;
538f0cd597SHoward Hinnant    const_reverse_iterator crend() const noexcept;
543e519524SHoward Hinnant
553e519524SHoward Hinnant    // capacity:
568f0cd597SHoward Hinnant    constexpr size_type size() const noexcept;
578f0cd597SHoward Hinnant    constexpr size_type max_size() const noexcept;
58397717b7SHoward Hinnant    constexpr bool empty() const noexcept;
593e519524SHoward Hinnant
603e519524SHoward Hinnant    // element access:
613e519524SHoward Hinnant    reference operator[](size_type n);
628bf1f08aSMarshall Clow    const_reference operator[](size_type n) const; // constexpr in C++14
638bf1f08aSMarshall Clow    const_reference at(size_type n) const; // constexpr in C++14
643e519524SHoward Hinnant    reference at(size_type n);
653e519524SHoward Hinnant
663e519524SHoward Hinnant    reference front();
678bf1f08aSMarshall Clow    const_reference front() const; // constexpr in C++14
683e519524SHoward Hinnant    reference back();
698bf1f08aSMarshall Clow    const_reference back() const; // constexpr in C++14
703e519524SHoward Hinnant
718f0cd597SHoward Hinnant    T* data() noexcept;
728f0cd597SHoward Hinnant    const T* data() const noexcept;
733e519524SHoward Hinnant};
743e519524SHoward Hinnant
753e519524SHoward Hinnanttemplate <class T, size_t N>
763e519524SHoward Hinnant  bool operator==(const array<T,N>& x, const array<T,N>& y);
773e519524SHoward Hinnanttemplate <class T, size_t N>
783e519524SHoward Hinnant  bool operator!=(const array<T,N>& x, const array<T,N>& y);
793e519524SHoward Hinnanttemplate <class T, size_t N>
803e519524SHoward Hinnant  bool operator<(const array<T,N>& x, const array<T,N>& y);
813e519524SHoward Hinnanttemplate <class T, size_t N>
823e519524SHoward Hinnant  bool operator>(const array<T,N>& x, const array<T,N>& y);
833e519524SHoward Hinnanttemplate <class T, size_t N>
843e519524SHoward Hinnant  bool operator<=(const array<T,N>& x, const array<T,N>& y);
853e519524SHoward Hinnanttemplate <class T, size_t N>
863e519524SHoward Hinnant  bool operator>=(const array<T,N>& x, const array<T,N>& y);
873e519524SHoward Hinnant
883e519524SHoward Hinnanttemplate <class T, size_t N >
898f0cd597SHoward Hinnant  void swap(array<T,N>& x, array<T,N>& y) noexcept(noexcept(x.swap(y)));
903e519524SHoward Hinnant
913e519524SHoward Hinnanttemplate <class T> class tuple_size;
925fcc8169SMarshall Clowtemplate <size_t I, class T> class tuple_element;
933e519524SHoward Hinnanttemplate <class T, size_t N> struct tuple_size<array<T, N>>;
945fcc8169SMarshall Clowtemplate <size_t I, class T, size_t N> struct tuple_element<I, array<T, N>>;
955fcc8169SMarshall Clowtemplate <size_t I, class T, size_t N> T& get(array<T, N>&) noexcept; // constexpr in C++14
965fcc8169SMarshall Clowtemplate <size_t I, class T, size_t N> const T& get(const array<T, N>&) noexcept; // constexpr in C++14
975fcc8169SMarshall Clowtemplate <size_t I, class T, size_t N> T&& get(array<T, N>&&) noexcept; // constexpr in C++14
98545b8861SEric Fiseliertemplate <size_t I, class T, size_t N> const T&& get(const array<T, N>&&) noexcept; // constexpr in C++14
993e519524SHoward Hinnant
1003e519524SHoward Hinnant}  // std
1013e519524SHoward Hinnant
1023e519524SHoward Hinnant*/
1033e519524SHoward Hinnant
1043e519524SHoward Hinnant#include <__config>
1053e519524SHoward Hinnant#include <__tuple>
1063e519524SHoward Hinnant#include <type_traits>
1073e519524SHoward Hinnant#include <utility>
1083e519524SHoward Hinnant#include <iterator>
1093e519524SHoward Hinnant#include <algorithm>
1103e519524SHoward Hinnant#include <stdexcept>
11159cdf90aSEric Fiselier#include <cstdlib> // for _LIBCPP_UNREACHABLE
11259cdf90aSEric Fiselier#include <__debug>
1133e519524SHoward Hinnant
114073458b1SHoward Hinnant#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1153e519524SHoward Hinnant#pragma GCC system_header
116073458b1SHoward Hinnant#endif
1173e519524SHoward Hinnant
118a016efb1SEric Fiselier
119a016efb1SEric Fiselier
1203e519524SHoward Hinnant_LIBCPP_BEGIN_NAMESPACE_STD
1213e519524SHoward Hinnant
12259cdf90aSEric Fiselier
1233e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
124e2f2d1edSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS array
1253e519524SHoward Hinnant{
1263e519524SHoward Hinnant    // types:
1273e519524SHoward Hinnant    typedef array __self;
1283e519524SHoward Hinnant    typedef _Tp                                   value_type;
1293e519524SHoward Hinnant    typedef value_type&                           reference;
1303e519524SHoward Hinnant    typedef const value_type&                     const_reference;
1313e519524SHoward Hinnant    typedef value_type*                           iterator;
1323e519524SHoward Hinnant    typedef const value_type*                     const_iterator;
1333e519524SHoward Hinnant    typedef value_type*                           pointer;
1343e519524SHoward Hinnant    typedef const value_type*                     const_pointer;
1353e519524SHoward Hinnant    typedef size_t                                size_type;
1363e519524SHoward Hinnant    typedef ptrdiff_t                             difference_type;
1373e519524SHoward Hinnant    typedef std::reverse_iterator<iterator>       reverse_iterator;
1383e519524SHoward Hinnant    typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
1393e519524SHoward Hinnant
14059cdf90aSEric Fiselier    _Tp __elems_[_Size];
1413e519524SHoward Hinnant
1423e519524SHoward Hinnant    // No explicit construct/copy/destroy for aggregate type
14359cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY void fill(const value_type& __u) {
14459cdf90aSEric Fiselier      _VSTD::fill_n(__elems_, _Size, __u);
14559cdf90aSEric Fiselier    }
146afeda5c2SEric Fiselier
1478f0cd597SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY
14859cdf90aSEric Fiselier    void swap(array& __a) _NOEXCEPT_(__is_nothrow_swappable<_Tp>::value) {
14959cdf90aSEric Fiselier      std::swap_ranges(__elems_, __elems_ + _Size, __a.__elems_);
15059cdf90aSEric Fiselier    }
1513e519524SHoward Hinnant
1523e519524SHoward Hinnant    // iterators:
153020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
15459cdf90aSEric Fiselier    iterator begin() _NOEXCEPT {return iterator(data());}
155020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
15659cdf90aSEric Fiselier    const_iterator begin() const _NOEXCEPT {return const_iterator(data());}
157020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
15859cdf90aSEric Fiselier    iterator end() _NOEXCEPT {return iterator(data() + _Size);}
159020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
16059cdf90aSEric Fiselier    const_iterator end() const _NOEXCEPT {return const_iterator(data() + _Size);}
1613e519524SHoward Hinnant
162020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1638f0cd597SHoward Hinnant    reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
164020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1658f0cd597SHoward Hinnant    const_reverse_iterator rbegin() const _NOEXCEPT {return const_reverse_iterator(end());}
166020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1678f0cd597SHoward Hinnant    reverse_iterator rend() _NOEXCEPT {return reverse_iterator(begin());}
168020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1698f0cd597SHoward Hinnant    const_reverse_iterator rend() const _NOEXCEPT {return const_reverse_iterator(begin());}
1703e519524SHoward Hinnant
171020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1728f0cd597SHoward Hinnant    const_iterator cbegin() const _NOEXCEPT {return begin();}
173020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1748f0cd597SHoward Hinnant    const_iterator cend() const _NOEXCEPT {return end();}
175020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1768f0cd597SHoward Hinnant    const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
177020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
1788f0cd597SHoward Hinnant    const_reverse_iterator crend() const _NOEXCEPT {return rend();}
1793e519524SHoward Hinnant
1803e519524SHoward Hinnant    // capacity:
1818f0cd597SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY
182397717b7SHoward Hinnant    _LIBCPP_CONSTEXPR size_type size() const _NOEXCEPT {return _Size;}
1838f0cd597SHoward Hinnant    _LIBCPP_INLINE_VISIBILITY
184397717b7SHoward Hinnant    _LIBCPP_CONSTEXPR size_type max_size() const _NOEXCEPT {return _Size;}
18572c8fad4SMarshall Clow    _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
18659cdf90aSEric Fiselier    _LIBCPP_CONSTEXPR bool empty() const _NOEXCEPT {return false; }
1873e519524SHoward Hinnant
1883e519524SHoward Hinnant    // element access:
189e7826950SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
190e7826950SMarshall Clow    reference operator[](size_type __n)             {return __elems_[__n];}
191e7826950SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
192e7826950SMarshall Clow    const_reference operator[](size_type __n) const {return __elems_[__n];}
193e7826950SMarshall Clow
194e7826950SMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX14       reference at(size_type __n);
1958bf1f08aSMarshall Clow    _LIBCPP_CONSTEXPR_AFTER_CXX11 const_reference at(size_type __n) const;
1963e519524SHoward Hinnant
197e7826950SMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 reference front()             {return __elems_[0];}
1988bf1f08aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 const_reference front() const {return __elems_[0];}
19959cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 reference back()              {return __elems_[_Size - 1];}
20059cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 const_reference back() const  {return __elems_[_Size - 1];}
2013e519524SHoward Hinnant
202020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
203936ff584SNirav Dave    value_type* data() _NOEXCEPT {return __elems_;}
204020b623aSMarshall Clow    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
205936ff584SNirav Dave    const value_type* data() const _NOEXCEPT {return __elems_;}
2063e519524SHoward Hinnant};
2073e519524SHoward Hinnant
20859cdf90aSEric Fiselier
2093e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
210e7826950SMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX14
2113e519524SHoward Hinnanttypename array<_Tp, _Size>::reference
2123e519524SHoward Hinnantarray<_Tp, _Size>::at(size_type __n)
2133e519524SHoward Hinnant{
2143e519524SHoward Hinnant    if (__n >= _Size)
215d437fa5cSMarshall Clow        __throw_out_of_range("array::at");
216d437fa5cSMarshall Clow
2173e519524SHoward Hinnant    return __elems_[__n];
2183e519524SHoward Hinnant}
2193e519524SHoward Hinnant
2203e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
2218bf1f08aSMarshall Clow_LIBCPP_CONSTEXPR_AFTER_CXX11
2223e519524SHoward Hinnanttypename array<_Tp, _Size>::const_reference
2233e519524SHoward Hinnantarray<_Tp, _Size>::at(size_type __n) const
2243e519524SHoward Hinnant{
2253e519524SHoward Hinnant    if (__n >= _Size)
226d437fa5cSMarshall Clow        __throw_out_of_range("array::at");
2273e519524SHoward Hinnant    return __elems_[__n];
2283e519524SHoward Hinnant}
2293e519524SHoward Hinnant
23059cdf90aSEric Fiseliertemplate <class _Tp>
23159cdf90aSEric Fiselierstruct _LIBCPP_TEMPLATE_VIS array<_Tp, 0>
23259cdf90aSEric Fiselier{
23359cdf90aSEric Fiselier    // types:
23459cdf90aSEric Fiselier    typedef array __self;
23559cdf90aSEric Fiselier    typedef _Tp                                   value_type;
23659cdf90aSEric Fiselier    typedef value_type&                           reference;
23759cdf90aSEric Fiselier    typedef const value_type&                     const_reference;
23859cdf90aSEric Fiselier    typedef value_type*                           iterator;
23959cdf90aSEric Fiselier    typedef const value_type*                     const_iterator;
24059cdf90aSEric Fiselier    typedef value_type*                           pointer;
24159cdf90aSEric Fiselier    typedef const value_type*                     const_pointer;
24259cdf90aSEric Fiselier    typedef size_t                                size_type;
24359cdf90aSEric Fiselier    typedef ptrdiff_t                             difference_type;
24459cdf90aSEric Fiselier    typedef std::reverse_iterator<iterator>       reverse_iterator;
24559cdf90aSEric Fiselier    typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
24659cdf90aSEric Fiselier
24759cdf90aSEric Fiselier    typedef typename conditional<is_const<_Tp>::value, const char,
24859cdf90aSEric Fiselier                                char>::type _CharType;
249*1a78ae3cSEric Fiselier
250*1a78ae3cSEric Fiselier    struct  _ArrayInStructT { _Tp __data_[1]; };
251*1a78ae3cSEric Fiselier    _ALIGNAS_TYPE(_ArrayInStructT) _CharType __elems_[sizeof(_ArrayInStructT)];
25259cdf90aSEric Fiselier
25359cdf90aSEric Fiselier    // No explicit construct/copy/destroy for aggregate type
25459cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY void fill(const value_type&) {
25559cdf90aSEric Fiselier      static_assert(!is_const<_Tp>::value,
25659cdf90aSEric Fiselier                    "cannot fill zero-sized array of type 'const T'");
25759cdf90aSEric Fiselier    }
25859cdf90aSEric Fiselier
25959cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
26059cdf90aSEric Fiselier    void swap(array&) _NOEXCEPT {
26159cdf90aSEric Fiselier      static_assert(!is_const<_Tp>::value,
26259cdf90aSEric Fiselier                    "cannot swap zero-sized array of type 'const T'");
26359cdf90aSEric Fiselier    }
26459cdf90aSEric Fiselier
26559cdf90aSEric Fiselier    // iterators:
26659cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
26759cdf90aSEric Fiselier    iterator begin() _NOEXCEPT {return iterator(data());}
26859cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
26959cdf90aSEric Fiselier    const_iterator begin() const _NOEXCEPT {return const_iterator(data());}
27059cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
27159cdf90aSEric Fiselier    iterator end() _NOEXCEPT {return iterator(data());}
27259cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
27359cdf90aSEric Fiselier    const_iterator end() const _NOEXCEPT {return const_iterator(data());}
27459cdf90aSEric Fiselier
27559cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
27659cdf90aSEric Fiselier    reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
27759cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
27859cdf90aSEric Fiselier    const_reverse_iterator rbegin() const _NOEXCEPT {return const_reverse_iterator(end());}
27959cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
28059cdf90aSEric Fiselier    reverse_iterator rend() _NOEXCEPT {return reverse_iterator(begin());}
28159cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
28259cdf90aSEric Fiselier    const_reverse_iterator rend() const _NOEXCEPT {return const_reverse_iterator(begin());}
28359cdf90aSEric Fiselier
28459cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
28559cdf90aSEric Fiselier    const_iterator cbegin() const _NOEXCEPT {return begin();}
28659cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
28759cdf90aSEric Fiselier    const_iterator cend() const _NOEXCEPT {return end();}
28859cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
28959cdf90aSEric Fiselier    const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
29059cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
29159cdf90aSEric Fiselier    const_reverse_iterator crend() const _NOEXCEPT {return rend();}
29259cdf90aSEric Fiselier
29359cdf90aSEric Fiselier    // capacity:
29459cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
29559cdf90aSEric Fiselier    _LIBCPP_CONSTEXPR size_type size() const _NOEXCEPT {return 0; }
29659cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
29759cdf90aSEric Fiselier    _LIBCPP_CONSTEXPR size_type max_size() const _NOEXCEPT {return 0;}
29859cdf90aSEric Fiselier    _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
29959cdf90aSEric Fiselier    _LIBCPP_CONSTEXPR bool empty() const _NOEXCEPT {return true;}
30059cdf90aSEric Fiselier
30159cdf90aSEric Fiselier    // element access:
30259cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
30359cdf90aSEric Fiselier    reference operator[](size_type) {
30459cdf90aSEric Fiselier      _LIBCPP_ASSERT(false, "cannot call array<T, 0>::operator[] on a zero-sized array");
30559cdf90aSEric Fiselier      _LIBCPP_UNREACHABLE();
30659cdf90aSEric Fiselier    }
30759cdf90aSEric Fiselier
30859cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
30959cdf90aSEric Fiselier    const_reference operator[](size_type) const {
31059cdf90aSEric Fiselier      _LIBCPP_ASSERT(false, "cannot call array<T, 0>::operator[] on a zero-sized array");
31159cdf90aSEric Fiselier      _LIBCPP_UNREACHABLE();
31259cdf90aSEric Fiselier    }
31359cdf90aSEric Fiselier
31459cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
31559cdf90aSEric Fiselier    reference at(size_type) {
31659cdf90aSEric Fiselier      __throw_out_of_range("array<T, 0>::at");
31759cdf90aSEric Fiselier      _LIBCPP_UNREACHABLE();
31859cdf90aSEric Fiselier    }
31959cdf90aSEric Fiselier
32059cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
32159cdf90aSEric Fiselier    const_reference at(size_type) const {
32259cdf90aSEric Fiselier      __throw_out_of_range("array<T, 0>::at");
32359cdf90aSEric Fiselier      _LIBCPP_UNREACHABLE();
32459cdf90aSEric Fiselier    }
32559cdf90aSEric Fiselier
32659cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
32759cdf90aSEric Fiselier    reference front() {
32859cdf90aSEric Fiselier      _LIBCPP_ASSERT(false, "cannot call array<T, 0>::front() on a zero-sized array");
32959cdf90aSEric Fiselier      _LIBCPP_UNREACHABLE();
33059cdf90aSEric Fiselier    }
33159cdf90aSEric Fiselier
33259cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
33359cdf90aSEric Fiselier    const_reference front() const {
33459cdf90aSEric Fiselier      _LIBCPP_ASSERT(false, "cannot call array<T, 0>::front() on a zero-sized array");
33559cdf90aSEric Fiselier      _LIBCPP_UNREACHABLE();
33659cdf90aSEric Fiselier    }
33759cdf90aSEric Fiselier
33859cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
33959cdf90aSEric Fiselier    reference back() {
34059cdf90aSEric Fiselier      _LIBCPP_ASSERT(false, "cannot call array<T, 0>::back() on a zero-sized array");
34159cdf90aSEric Fiselier      _LIBCPP_UNREACHABLE();
34259cdf90aSEric Fiselier    }
34359cdf90aSEric Fiselier
34459cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
34559cdf90aSEric Fiselier    const_reference back() const {
34659cdf90aSEric Fiselier      _LIBCPP_ASSERT(false, "cannot call array<T, 0>::back() on a zero-sized array");
34759cdf90aSEric Fiselier      _LIBCPP_UNREACHABLE();
34859cdf90aSEric Fiselier    }
34959cdf90aSEric Fiselier
35059cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
35159cdf90aSEric Fiselier    value_type* data() _NOEXCEPT {return reinterpret_cast<value_type*>(__elems_);}
35259cdf90aSEric Fiselier    _LIBCPP_INLINE_VISIBILITY
35359cdf90aSEric Fiselier    const value_type* data() const _NOEXCEPT {return reinterpret_cast<const value_type*>(__elems_);}
35459cdf90aSEric Fiselier};
35559cdf90aSEric Fiselier
35659cdf90aSEric Fiselier
3573e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
3583af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
3593e519524SHoward Hinnantbool
3603e519524SHoward Hinnantoperator==(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
3613e519524SHoward Hinnant{
36259cdf90aSEric Fiselier    return _VSTD::equal(__x.begin(), __x.end(), __y.begin());
3633e519524SHoward Hinnant}
3643e519524SHoward Hinnant
3653e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
3663af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
3673e519524SHoward Hinnantbool
3683e519524SHoward Hinnantoperator!=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
3693e519524SHoward Hinnant{
3703e519524SHoward Hinnant    return !(__x == __y);
3713e519524SHoward Hinnant}
3723e519524SHoward Hinnant
3733e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
3743af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
3753e519524SHoward Hinnantbool
3763e519524SHoward Hinnantoperator<(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
3773e519524SHoward Hinnant{
37859cdf90aSEric Fiselier    return _VSTD::lexicographical_compare(__x.begin(), __x.end(),
37959cdf90aSEric Fiselier                                          __y.begin(), __y.end());
3803e519524SHoward Hinnant}
3813e519524SHoward Hinnant
3823e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
3833af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
3843e519524SHoward Hinnantbool
3853e519524SHoward Hinnantoperator>(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
3863e519524SHoward Hinnant{
3873e519524SHoward Hinnant    return __y < __x;
3883e519524SHoward Hinnant}
3893e519524SHoward Hinnant
3903e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
3913af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
3923e519524SHoward Hinnantbool
3933e519524SHoward Hinnantoperator<=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
3943e519524SHoward Hinnant{
3953e519524SHoward Hinnant    return !(__y < __x);
3963e519524SHoward Hinnant}
3973e519524SHoward Hinnant
3983e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
3993af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
4003e519524SHoward Hinnantbool
4013e519524SHoward Hinnantoperator>=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
4023e519524SHoward Hinnant{
4033e519524SHoward Hinnant    return !(__x < __y);
4043e519524SHoward Hinnant}
4053e519524SHoward Hinnant
4063e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
4073af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY
408bc95cf0dSHoward Hinnanttypename enable_if
409bc95cf0dSHoward Hinnant<
410f07dd8d0SEric Fiselier    _Size == 0 ||
411bc95cf0dSHoward Hinnant    __is_swappable<_Tp>::value,
4123e519524SHoward Hinnant    void
413bc95cf0dSHoward Hinnant>::type
414ee66eb13SMarshall Clowswap(array<_Tp, _Size>& __x, array<_Tp, _Size>& __y)
415f07dd8d0SEric Fiselier                                  _NOEXCEPT_(noexcept(__x.swap(__y)))
4163e519524SHoward Hinnant{
4173e519524SHoward Hinnant    __x.swap(__y);
4183e519524SHoward Hinnant}
4193e519524SHoward Hinnant
4203e519524SHoward Hinnanttemplate <class _Tp, size_t _Size>
421e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS tuple_size<array<_Tp, _Size> >
422f5ab703fSHoward Hinnant    : public integral_constant<size_t, _Size> {};
4233e519524SHoward Hinnant
4243e519524SHoward Hinnanttemplate <size_t _Ip, class _Tp, size_t _Size>
425e2f2d1edSEric Fiselierclass _LIBCPP_TEMPLATE_VIS tuple_element<_Ip, array<_Tp, _Size> >
4263e519524SHoward Hinnant{
4276db379a2SMarshall Clow    static_assert(_Ip < _Size, "Index out of bounds in std::tuple_element<> (std::array)");
4283e519524SHoward Hinnantpublic:
4293e519524SHoward Hinnant    typedef _Tp type;
4303e519524SHoward Hinnant};
4313e519524SHoward Hinnant
4323e519524SHoward Hinnanttemplate <size_t _Ip, class _Tp, size_t _Size>
4333af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
4343e519524SHoward Hinnant_Tp&
4358f0cd597SHoward Hinnantget(array<_Tp, _Size>& __a) _NOEXCEPT
4363e519524SHoward Hinnant{
43736a60721SMarshall Clow    static_assert(_Ip < _Size, "Index out of bounds in std::get<> (std::array)");
4388bf1f08aSMarshall Clow    return __a.__elems_[_Ip];
4393e519524SHoward Hinnant}
4403e519524SHoward Hinnant
4413e519524SHoward Hinnanttemplate <size_t _Ip, class _Tp, size_t _Size>
4423af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
4433e519524SHoward Hinnantconst _Tp&
4448f0cd597SHoward Hinnantget(const array<_Tp, _Size>& __a) _NOEXCEPT
4453e519524SHoward Hinnant{
44636a60721SMarshall Clow    static_assert(_Ip < _Size, "Index out of bounds in std::get<> (const std::array)");
4478bf1f08aSMarshall Clow    return __a.__elems_[_Ip];
4483e519524SHoward Hinnant}
4493e519524SHoward Hinnant
450208156e8SEric Fiselier#ifndef _LIBCPP_CXX03_LANG
451601afb30SHoward Hinnant
452601afb30SHoward Hinnanttemplate <size_t _Ip, class _Tp, size_t _Size>
4533af48ef7SHoward Hinnantinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
454601afb30SHoward Hinnant_Tp&&
4558f0cd597SHoward Hinnantget(array<_Tp, _Size>&& __a) _NOEXCEPT
456601afb30SHoward Hinnant{
45736a60721SMarshall Clow    static_assert(_Ip < _Size, "Index out of bounds in std::get<> (std::array &&)");
4588bf1f08aSMarshall Clow    return _VSTD::move(__a.__elems_[_Ip]);
459601afb30SHoward Hinnant}
460601afb30SHoward Hinnant
461545b8861SEric Fiseliertemplate <size_t _Ip, class _Tp, size_t _Size>
462545b8861SEric Fiselierinline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
463545b8861SEric Fiselierconst _Tp&&
464545b8861SEric Fiselierget(const array<_Tp, _Size>&& __a) _NOEXCEPT
465545b8861SEric Fiselier{
466545b8861SEric Fiselier    static_assert(_Ip < _Size, "Index out of bounds in std::get<> (const std::array &&)");
467545b8861SEric Fiselier    return _VSTD::move(__a.__elems_[_Ip]);
468545b8861SEric Fiselier}
469545b8861SEric Fiselier
470208156e8SEric Fiselier#endif  // !_LIBCPP_CXX03_LANG
471601afb30SHoward Hinnant
4723e519524SHoward Hinnant_LIBCPP_END_NAMESPACE_STD
4733e519524SHoward Hinnant
4743e519524SHoward Hinnant#endif  // _LIBCPP_ARRAY
475