| 105 | typename iter_type |
| 106 | > |
| 107 | __normal_call void_type copy_list ( |
| 108 | iter_type _head, |
| 109 | iter_type _tend, |
| 110 | __cont::base_iterator_kind |
| 111 | ) |
| 112 | { /* push the sequence onto list */ |
| 113 | for ( ; _head != _tend; ++_head) |
| 114 | push_tail(*_head) ; |
| 115 | } |
| 116 | |
| 117 | __inline_call void_type copy_list ( |
| 118 | size_type _size , |
nothing calls this directly
no outgoing calls
no test coverage detected