MCPcopy Create free account
hub / github.com/SheafificationOfG/based-cpp / memcpy

Function memcpy

gil/std.str.hpp:34–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34static constexpr auto memcpy(auto dst, auto src, auto size) noexcept {
35 using _impl_::idx;
36
37 return for_(idx = 0, idx < size, ++idx)(dst[*idx] = src[*idx]);
38}
39
40static constexpr auto end(auto ch) noexcept {
41 return ch == none_ || ch == '\0';

Callers

nothing calls this directly

Calls 1

for_Function · 0.85

Tested by

no test coverage detected