bsl::basic_string<wchar_t>::starts_with

starts_with overloads

Synopses

Declared in <bslstl_string.h>

Return true if this string starts with the specified character.

bool
starts_with(wchar_t character) const noexcept;
» more...

Return true if this string starts with the specified characterString.

bool
starts_with(basic_string_view<wchar_t, char_traits<wchar_t>> characterString) const noexcept;
» more...

Return true if this string starts with the specified C-string.

bool
starts_with(wchar_t const* characterString) const;
» more...