std::array::data

From Cppreference

Jump to: navigation, search
T* data();
(C++11 feature)
const T* data() const;
(C++11 feature)

Returns pointer to the underlying array serving as element storage. Specifically the pointer is such that range [data(); data() + size()) is a valid.

Contents

[edit] Parameters

(none)

[edit] Return value

pointer to the underlying element storage.

[edit] Complexity

Constant.

[edit] See also

front
access the first element
(public member function)
back
access the last element
(public member function)