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

Method ctor_iter

src/libcpp/containers/array.hpp:108–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106/*------------------------------ helper - construct range */
107
108 __normal_call void_type ctor_iter (
109 _write_it _head,
110 _write_it _tail
111 )
112 { /* _def construct sequence */
113 for ( ; _head != _tail ; ++_head)
114 {
115 self_type::construct(&*_head) ;
116 }
117 }
118 __normal_call void_type ctor_iter (
119 _write_it _head,
120 _write_it _tend,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected