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

Method dtor_iter

src/libcpp/containers/array.hpp:133–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131/*------------------------------ helper - _destruct range */
132
133 __normal_call void_type dtor_iter (
134 _write_it _head,
135 _write_it _tend
136 )
137 {
138 for ( ; _head != _tend ; ++_head)
139 {
140 self_type::_destruct(&*_head) ;
141 }
142 }
143
144/*------------------------------ helper - inc. allocation */
145

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected