| 444 | } |
| 445 | |
| 446 | static int StringRightIndexOf(FString *self, const FString &substr, int endIndex) |
| 447 | { |
| 448 | return (int)self->LastIndexOf(substr, endIndex); |
| 449 | } |
| 450 | |
| 451 | DEFINE_ACTION_FUNCTION_NATIVE(FStringStruct, RightIndexOf, StringRightIndexOf) |
| 452 | { |
no test coverage detected