bsl::basic_string<wchar_t>::contains

contains overloads

Synopses

Declared in <bslstl_string.h>

Return true if this view contains with the specified character, and false otherwise.

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

Return true if this view contains with the specified subview, and false otherwise. See {Lexicographical Comparisons}.

bool
contains(basic_string_view<wchar_t, char_traits<wchar_t>> subview) const noexcept;
» more...

Return true if this view contains with the specified characterString, and false otherwise.

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