Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_static_string::rfind

Find the last occurrence of a string within the string.

template<
    typename T>
constexpr basic_static_string::size_type
rfind(
    const T& t,
    basic_static_string::size_type pos = basic_static_string::npos) const noexcept(detail::is_nothrow_convertible< const T &, string_view_type >::value);
  » more...

template<
    std::size_t M>
constexpr basic_static_string::size_type
rfind(
    const basic_static_string< M, CharT, Traits >& str,
    basic_static_string::size_type pos = basic_static_string::npos) const noexcept;
  » more...

constexpr basic_static_string::size_type
rfind(
    basic_static_string::const_pointer s,
    basic_static_string::size_type pos,
    basic_static_string::size_type n) const noexcept;
  » more...

constexpr basic_static_string::size_type
rfind(
    basic_static_string::const_pointer s,
    basic_static_string::size_type pos = basic_static_string::npos) const noexcept;
  » more...

Find the last occurrence of a character within the string.

constexpr basic_static_string::size_type
rfind(
    basic_static_string::value_type c,
    basic_static_string::size_type pos = basic_static_string::npos) const noexcept;
  » more...

PrevUpHomeNext