| 2302 | } |
| 2303 | |
| 2304 | std::size_t String::rfind( const String& str, std::size_t pos ) const { |
| 2305 | return mString.rfind( str.mString, pos ); |
| 2306 | } |
| 2307 | |
| 2308 | std::size_t String::rfind( const char* s, std::size_t pos ) const { |
| 2309 | return rfind( String( s ), pos ); |
no outgoing calls
no test coverage detected