|
_GLIBCXX17_CONSTEXPR reference | at (size_type __n) |
|
constexpr const_reference | at (size_type __n) const |
|
_GLIBCXX17_CONSTEXPR reference | back () noexcept |
|
constexpr const_reference | back () const noexcept |
|
_GLIBCXX17_CONSTEXPR iterator | begin () noexcept |
|
_GLIBCXX17_CONSTEXPR const_iterator | begin () const noexcept |
|
_GLIBCXX17_CONSTEXPR const_iterator | cbegin () const noexcept |
|
_GLIBCXX17_CONSTEXPR const_iterator | cend () const noexcept |
|
_GLIBCXX17_CONSTEXPR const_reverse_iterator | crbegin () const noexcept |
|
_GLIBCXX17_CONSTEXPR const_reverse_iterator | crend () const noexcept |
|
_GLIBCXX17_CONSTEXPR pointer | data () noexcept |
|
_GLIBCXX17_CONSTEXPR const_pointer | data () const noexcept |
|
constexpr bool | empty () const noexcept |
|
_GLIBCXX17_CONSTEXPR iterator | end () noexcept |
|
_GLIBCXX17_CONSTEXPR const_iterator | end () const noexcept |
|
void | fill (const value_type &__u) |
|
_GLIBCXX17_CONSTEXPR reference | front () noexcept |
|
constexpr const_reference | front () const noexcept |
|
constexpr size_type | max_size () const noexcept |
|
_GLIBCXX17_CONSTEXPR reference | operator[] (size_type __n) noexcept |
|
constexpr const_reference | operator[] (size_type __n) const noexcept |
|
_GLIBCXX17_CONSTEXPR reverse_iterator | rbegin () noexcept |
|
_GLIBCXX17_CONSTEXPR const_reverse_iterator | rbegin () const noexcept |
|
_GLIBCXX17_CONSTEXPR reverse_iterator | rend () noexcept |
|
_GLIBCXX17_CONSTEXPR const_reverse_iterator | rend () const noexcept |
|
constexpr size_type | size () const noexcept |
|
void | swap (array &__other) noexcept(_AT_Type::_Is_nothrow_swappable::value) |
|
template<typename _Tp, std::size_t _Nm>
struct std::array< _Tp, _Nm >
A standard container for storing a fixed size sequence of elements.
Meets the requirements of a container, a reversible container, and a sequence.
Sets support random access iterators.
- Template Parameters
-
Tp | Type of element. Required to be a complete type. |
N | Number of elements. |
Definition at line 94 of file array.