| 497 | |
| 498 | template<typename T> |
| 499 | inline VirtualArray init(int inIndex, const T &inVal) |
| 500 | { |
| 501 | if (store!=hx::arrayFixed) EnsureStorage(inVal); |
| 502 | __SetItem(inIndex,inVal); |
| 503 | return this; |
| 504 | } |
| 505 | |
| 506 | inline Dynamic __unsafe_set(int inIndex, const Dynamic &val) { return __SetItem(inIndex,val); } |
| 507 | inline Dynamic __unsafe_get(int inIndex) { return __GetItem(inIndex); } |
nothing calls this directly
no test coverage detected