| 439 | } |
| 440 | |
| 441 | inline bool remove(Dynamic inValue) |
| 442 | { |
| 443 | checkBase(); |
| 444 | if (store==hx::arrayEmpty) |
| 445 | return false; |
| 446 | EnsureStorage(inValue); |
| 447 | return base->__remove(inValue); |
| 448 | } |
| 449 | |
| 450 | inline bool removeAt(int inIndex) { checkBase(); return (store!=hx::arrayEmpty) && base->__removeAt(inIndex); } |
| 451 |
nothing calls this directly
no test coverage detected