![]() |
Home | Libraries | People | FAQ | More |
Find the first occurrence of a character not within the string.
template< typename T> constexprbasic_static_string::size_typefind_first_not_of( const T& t,basic_static_string::size_typepos = 0) const noexcept(detail::is_nothrow_convertible< const T &, string_view_type >::value); »more...
Find the first occurrence of any of the characters not within the string.
template<std::size_tM> constexprbasic_static_string::size_typefind_first_not_of( constbasic_static_string< M, CharT, Traits >& str,basic_static_string::size_typepos = 0) const noexcept; »more...constexprbasic_static_string::size_typefind_first_not_of(basic_static_string::const_pointers,basic_static_string::size_typepos,basic_static_string::size_typen) const noexcept; »more...constexprbasic_static_string::size_typefind_first_not_of(basic_static_string::const_pointers,basic_static_string::size_typepos = 0) const noexcept; »more...
Find the first occurrence of a character not equal to c.
constexprbasic_static_string::size_typefind_first_not_of(basic_static_string::value_typec,basic_static_string::size_typepos = 0) const noexcept; »more...