| 141 | typename iter_type |
| 142 | > |
| 143 | __normal_call void_type copy_iter ( |
| 144 | iter_type _head, |
| 145 | iter_type _tail, |
| 146 | __cont::base_iterator_kind |
| 147 | ) |
| 148 | { /* copy range onto object */ |
| 149 | for(; _head != _tail; ++_head) |
| 150 | { |
| 151 | push_tail(*_head) ; |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | __inline_call void_type copy_iter ( |
| 156 | size_type _SIZE, |
nothing calls this directly
no outgoing calls
no test coverage detected