bsl::basic_string<char8_t>::begin

begin overloads

Synopses

Declared in <bslstl_string.h>

Return an iterator referring to the first character in this modifiable string (or the past-the-end iterator if this string is empty).

iterator
begin() noexcept;
» more...

Return an iterator providing non-modifiable access to the first character of this string (or the past-the-end iterator if this string is empty).

const_iterator
begin() const noexcept;
» more...