-------------------------------- write access iterators */
| 612 | |
| 613 | /*-------------------------------- write access iterators */ |
| 614 | __inline_call _write_it head ( |
| 615 | ) |
| 616 | { /* return iterator for list head */ |
| 617 | data_type *_ptr = |
| 618 | this->_ptrs[_hptr] != nullptr ? |
| 619 | this->_ptrs[_hptr] : nullptr ; |
| 620 | self_type *_obj = (self_type *)this ; |
| 621 | return _write_it(_ptr, _obj) ; |
| 622 | } |
| 623 | |
| 624 | __inline_call _write_it tail ( |
| 625 | ) |
nothing calls this directly
no test coverage detected