Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext
array::data (1 of 2 overloads)

Access the underlying array directly.

Synopsis
value*
data();
Description

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

Complexity

Constant.

Exception Safety

No-throw guarantee.

Remarks

If size() == 0, the function may or may not return a null pointer.


PrevUpHomeNext