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
basic_static_string::data (2 of 2 overloads)

Return a pointer to the string.

Synopsis
constexpr const_pointer
data() const;
Description

Returns a pointer to the underlying array serving as 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.

Remarks

The value returned from this function is never never a null pointer value.


PrevUpHomeNext