-------------------------------- helper - copy sequence */
| 90 | |
| 91 | /*-------------------------------- helper - copy sequence */ |
| 92 | __normal_call void_type copy_data ( |
| 93 | size_type _SIZE, |
| 94 | data_type const& _dsrc |
| 95 | ) |
| 96 | { |
| 97 | for (auto _item = head() ; |
| 98 | _SIZE != +0 ; |
| 99 | --_SIZE, ++_item ) |
| 100 | *_item = __copy(data_type, _dsrc) ; |
| 101 | } |
| 102 | |
| 103 | template < |
| 104 | typename iter_type |
nothing calls this directly
no outgoing calls
no test coverage detected