MCPcopy Create free account
hub / github.com/FastLED/FastLED / trivial_move_left

Method trivial_move_left

src/fl/stl/basic_vector.cpp.hpp:20–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18}
19
20void vector_basic::trivial_move_left(void* dst, const void* src, fl::size count) const {
21 fl::memmove(dst, src, count * mElementSize);
22}
23
24void vector_basic::trivial_default_construct(void* ptr, fl::size count) const {
25 fl::memset(ptr, 0, count * mElementSize);

Callers

nothing calls this directly

Calls 1

memmoveFunction · 0.85

Tested by

no test coverage detected