bsl::basic_string<wchar_t>::front

front overloads

Synopses

Declared in <bslstl_string.h>

Return a reference providing modifiable access to the character at the first position in this string. The behavior is undefined if this string is empty.

wchar_t&
front();
» more...

Return a reference providing non-modifiable access to the character at the first position in this string. The behavior is undefined if this string is empty.

wchar_t const&
front() const;
» more...