-------------------------------- const access iterators */
| 571 | |
| 572 | /*-------------------------------- const access iterators */ |
| 573 | __inline_call _const_it head ( |
| 574 | ) const |
| 575 | {/*---- return iterator for list head */ |
| 576 | data_type *_ptr = |
| 577 | this->_ptrs[_hptr] != nullptr ? |
| 578 | this->_ptrs[_hptr] : nullptr ; |
| 579 | self_type *_obj = (self_type *)this ; |
| 580 | return _const_it(_ptr, _obj) ; |
| 581 | } |
| 582 | |
| 583 | __inline_call _const_it tail ( |
| 584 | ) const |
nothing calls this directly
no test coverage detected