| 450 | inline bool removeAt(int inIndex) { checkBase(); return (store!=hx::arrayEmpty) && base->__removeAt(inIndex); } |
| 451 | |
| 452 | int indexOf(Dynamic inValue, Dynamic fromIndex = null()) |
| 453 | { |
| 454 | checkBase(); |
| 455 | if (store==hx::arrayEmpty) |
| 456 | return -1; |
| 457 | EnsureStorage(inValue); |
| 458 | return (int)base->__indexOf(inValue,fromIndex); |
| 459 | } |
| 460 | int lastIndexOf(Dynamic inValue, Dynamic fromIndex = null()) |
| 461 | { |
| 462 | checkBase(); |
nothing calls this directly
no test coverage detected