| 428 | } |
| 429 | |
| 430 | void removeChild(unsigned bitNo, unsigned childIndex) { |
| 431 | assert_precondition(childIndex < capacity()); |
| 432 | memmove(&_children[childIndex], &_children[childIndex+1], (capacity() - childIndex - 1)*sizeof(NodeRef)); |
| 433 | _bitmap.removeBit(bitNo); |
| 434 | } |
| 435 | |
| 436 | |
| 437 | Bitmap<bitmap_t> _bitmap {0}; |