| 196 | typename iter_type |
| 197 | > |
| 198 | __inline_call block_array ( |
| 199 | iter_type _head, |
| 200 | iter_type _tail, |
| 201 | allocator const&_asrc = allocator() |
| 202 | ) : _block( _asrc) |
| 203 | { |
| 204 | /*----------------------- default c'tor - initialisor */ |
| 205 | this->_count = +0; |
| 206 | this->_alloc = +0; |
| 207 | copy_iter(_head,_tail, |
| 208 | __cont::iter_kind( _head)) ; |
| 209 | } |
| 210 | |
| 211 | __inline_call~block_array ( |
| 212 | ) |
nothing calls this directly
no test coverage detected