| 125 | } |
| 126 | |
| 127 | int64_t LastIndexOf2(const StringValue& haystack, const StringValue& needle) { |
| 128 | return haystack.LastIndexOf(needle).value_or(-1); |
| 129 | } |
| 130 | |
| 131 | Value LastIndexOf3(const StringValue& haystack, const StringValue& needle, |
| 132 | int64_t pos) { |
nothing calls this directly
no test coverage detected