@brief Finds the last occurence of `sv` character sequence in this referenced character sequence. @param sv The character sequence to compare with. @param pos The offset of the search beginning position in this referenced character sequence. @return The beginning position of `sv` characters, `npos` otherwise.
| 2776 | /// @param pos The offset of the search beginning position in this referenced character sequence. |
| 2777 | /// @return The beginning position of `sv` characters, `npos` otherwise. |
| 2778 | size_type find_last_of(basic_str_view sv, size_type pos = npos) const noexcept { |
| 2779 | return find_last_of(sv.mp_str, pos, sv.m_len); |
| 2780 | } |
| 2781 | |
| 2782 | /// @brief Finds the last occurence of `c` character in this referenced character sequence. |
| 2783 | /// @param c The character to compare with. |
nothing calls this directly
no test coverage detected