--------------------------------------- const iterators */
| 249 | |
| 250 | /*--------------------------------------- const iterators */ |
| 251 | __inline_call _const_it head ( |
| 252 | ) const |
| 253 | { /* return iterator to head of array */ |
| 254 | size_type _off = 0; |
| 255 | self_type *_obj = (self_type *)this ; |
| 256 | return _const_it(this->_data + _off, _obj); |
| 257 | } |
| 258 | |
| 259 | __inline_call _const_it tail ( |
| 260 | ) const |
nothing calls this directly
no test coverage detected