--------------------------------------- write iterators */
| 216 | |
| 217 | /*--------------------------------------- write iterators */ |
| 218 | __inline_call _write_it head ( |
| 219 | ) |
| 220 | { /* return iterator to head of array */ |
| 221 | size_type _off = 0; |
| 222 | self_type *_obj = (self_type *)this ; |
| 223 | return _write_it(this->_data + _off, _obj); |
| 224 | } |
| 225 | |
| 226 | __inline_call _write_it tail ( |
| 227 | ) |
nothing calls this directly
no test coverage detected