| 458 | return (int)base->__indexOf(inValue,fromIndex); |
| 459 | } |
| 460 | int lastIndexOf(Dynamic inValue, Dynamic fromIndex = null()) |
| 461 | { |
| 462 | checkBase(); |
| 463 | if (store==hx::arrayEmpty) |
| 464 | return -1; |
| 465 | EnsureStorage(inValue); |
| 466 | return (int)base->__lastIndexOf(inValue,fromIndex); |
| 467 | } |
| 468 | |
| 469 | Dynamic shift() { checkBase(); return store==hx::arrayEmpty ? null() : base->__shift(); } |
| 470 |
nothing calls this directly
no test coverage detected