MCPcopy Create free account
hub / github.com/dengwirda/jigsaw / copy_data

Method copy_data

src/libcpp/containers/fixed_array.hpp:92–101  ·  view source on GitHub ↗

-------------------------------- helper - copy sequence */

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected