std::basic_string_view<CharT,Traits>::front
From cppreference.com
< cpp | string | basic string view
| constexpr const_reference front() const; |
(since C++17) | |
Returns reference to the first character in the view.
|
If empty() is true, the behavior is undefined. |
(until C++26) |
|
If empty() is true:
|
(since C++26) |
Contents |