MCPcopy Create free account
hub / github.com/ElementsProject/elements / fill

Method fill

src/prevector.h:204–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202 const T* item_ptr(difference_type pos) const { return is_direct() ? direct_ptr(pos) : indirect_ptr(pos); }
203
204 void fill(T* dst, ptrdiff_t count, const T& value = T{}) {
205 std::fill_n(dst, count, value);
206 }
207
208 template<typename InputIterator>
209 void fill(T* dst, InputIterator first, InputIterator last) {

Callers 5

streamStateFromFormatFunction · 0.80
formatImplFunction · 0.80
setQRMethod · 0.80
StreamStateRestorerMethod · 0.80
restoreMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected