std::array::data

1
T* data();
(since C++11)
1
const T* data() const;
(since C++11)

Returns pointer to the underlying array serving as element storage. The pointer is such that range [data(); data() + size()) is always a valid range, even if the container is empty.

Parameters

(none).

Return value

Pointer to the underlying element storage. For non-empty containers, returns &front().

Complexity

Constant.

Exceptions

noexcept specification:
noexcept

See also

access the first element
(public member function)
access the last element
(public member function)
doc_CPP
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.