MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / copyInsert

Method copyInsert

Libraries/Containers/Vector.h:160–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158 template <typename U> static void moveConstruct(Span<T> data, U* src) noexcept { SegmentVTable<T>::template moveConstruct<U>(data, src);}
159 template <typename U> static void moveAssign(Span<T> data, U* src) noexcept { SegmentVTable<T>::template moveAssign<U>(data, src);}
160 template <typename U> static void copyInsert(Span<T> data, Span<const U> values) noexcept { SegmentVTable<T>::template copyInsert<U>(data, values);}
161 // clang-format on
162 static void remove(Span<T> data, size_t numElements) noexcept { SegmentVTable<T>::remove(data, numElements); }
163};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected