@brief Retrospectively finds the beginning position of `sv` characters 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.
| 2674 | /// @param pos The offset of the search beginning position in this referenced character sequence. |
| 2675 | /// @return The beginning position of `sv` characters, `npos` otherwise. |
| 2676 | size_type rfind(basic_str_view sv, size_type pos = npos) const noexcept { |
| 2677 | return rfind(sv.mp_str, pos, sv.m_len); |
| 2678 | } |
| 2679 | |
| 2680 | /// @brief Retrospectively finds the beginning position of `c` character in this referenced character sequence. |
| 2681 | /// @param sv The character to compare with. |
no test coverage detected