Query: std::array
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
std::array< _Tp, _Nm >(3cxx) std::array< _Tp, _Nm >(3cxx)NAMEstd::array< _Tp, _Nm > -SYNOPSISPublic Types typedef const value_type * const_iterator typedef const _Tp * const_pointer typedef const value_type & const_reference typedef std::reverse_iterator < const_iterator > const_reverse_iterator" typedef std::ptrdiff_t difference_type typedef value_type * iterator typedef _Tp * pointer typedef value_type & reference typedef std::reverse_iterator < iterator > reverse_iterator" typedef std::size_t size_type typedef _Tp value_type Public Member Functions reference at (size_type __n) const_reference at (size_type __n) const reference back () const_reference back () const iterator begin () const_iterator begin () const const_iterator cbegin () const const_iterator cend () const const_reverse_iterator crbegin () const const_reverse_iterator crend () const _Tp * data () const _Tp * data () const constexpr bool empty () const iterator end () const_iterator end () const void fill (const value_type &__u) reference front () const_reference front () const constexpr size_type max_size () const reference operator[] (size_type __n) const_reference operator[] (size_type __n) const reverse_iterator rbegin () const_reverse_iterator rbegin () const reverse_iterator rend () const_reverse_iterator rend () const constexpr size_type size () const void swap (array &__other) Public Attributes value_type _M_instance [_Nm?_Nm:1] Detailed Description 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. Parameters: Tp Type of element. Required to be a complete type. N Number of elements. Definition at line 60 of file array. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::array< _Tp, _Nm >(3cxx)
Related Man Pages |
---|
std::__profile::map(3) - centos |
std::__profile::deque(3) - debian |
std::__profile::multiset(3) - debian |
std::__profile::set(3) - debian |
std::array(3) - debian |
Similar Topics in the Unix Linux Community |
---|
std::reverse_iterator in Sun C++ |
C pointer/array duality confusion |