| 264 | } |
| 265 | |
| 266 | virtual void remove(const SizeType index) { |
| 267 | if (index < getCount()) { |
| 268 | getItemPtr(index)->__unref(); |
| 269 | YBaseArray::remove(index); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | virtual void clear() { |
| 274 | for (SizeType i = 0; i < getCount(); ++i) |
no test coverage detected