std::basic_string_view<CharT,Traits>::data
From cppreference.com
< cpp | string | basic string view
| constexpr const_pointer data() const noexcept; |
(since C++17) | |
Returns a pointer to the underlying character array. The pointer is such that the range [data(), data() + size()) is valid and the values in it correspond to the values of the view.
Contents |