[ Web Proxy ]
URL:
Viewing: https://ko.cppreference.com/cpp/container/dynarray [Back]  [Original]

std::dynarray - cppreference.com
cppreference.com

std::dynarray

cppreference.com
<tbody> </tbody>
<dynarray> .
template< class T > class dynarray;
(since C++14)

std::dynarray is a sequence container that encapsulates arrays with a size that is fixed at construction and does not change throughout the lifetime of the object.

The elements are stored contiguously, which means that elements can be accessed not only through iterators, but also using offsets on regular pointers to elements. This means that a pointer to an element of a dynarray may be passed to any function that expects a pointer to an element of an array.

There is a special case for a zero-length array (the number of elements was specified as zero during construction). In that case, array.begin() == array.end(), which is some unique value. The effect of calling front() or back() on a zero-sized dynarray is undefined.


Template parameters

Member types

Member type Definition
value_type T [edit]
size_type std::size_t [edit]
difference_type std::ptrdiff_t [edit]
reference value_type& [edit]
const_reference const value_type& [edit]
pointer value_type*[edit]
const_pointer const value_type*[edit]
iterator RandomAccessIterator [edit]
const_iterator (constant) (iterator) [edit]
reverse_iterator std::reverse_iterator<iterator> [edit]
const_reverse_iterator std::reverse_iterator<const_iterator> [edit]

Member functions

dynarray .
(public member function) [edit]
dynarray .
(public member function) [edit]
operator=
[deleted]
the container is neither copy-, nor move-assignable
(public member function) [edit]
Element access
access specified element with bounds checking
(public member function) [edit]

(public member function) [edit]
.
(public member function) [edit]
.
(public member function) [edit]
direct access to the underlying array
(public member function) [edit]
Iterators
(iterator) .
(public member function) [edit]
(iterator) .
(public member function) [edit]
(reverse iterator) .
(public member function) [edit]
(reverse iterator) .
(public member function) [edit]
Capacity
.
(public member function) [edit]
.
(public member function) [edit]
.
(public member function) [edit]
Modifiers
fill the container with specified value
(public member function) [edit]

Non-member functions

lexicographically compares the values in the dynarray
(function template) [edit]

Helper classes

specializes the std::uses_allocator type trait
(function template) [edit]

Web Proxy Viewer  |  New URL  |  Original Page