MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / append

Method append

modules/core/core/include/OpenString/common/sequence.h:417–421  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

415
416 template <class T, u64 I>
417 void sequence<T, I>::append(const T* const source, const u64 size) noexcept
418 {
419 this->push_back_uninitialized(size);
420 std::copy_n(source, size, this->data_at(this->size_ - size));
421 }
422
423 template <class T, u64 I>
424 bool sequence<T, I>::is_short() const noexcept

Callers 15

create_imgui_resourcesFunction · 0.45
OpenProjectMethod · 0.45
WriteHeaderFunction · 0.45
LoadDXCLibraryMethod · 0.45
LoadDXILLibraryMethod · 0.45
loadHotfixModuleMethod · 0.45
spawnDynamicModuleMethod · 0.45
GetAnsiEscapeCodeFunction · 0.45
sinkMethod · 0.45

Calls 3

data_atMethod · 0.95
copy_nFunction · 0.85

Tested by

no test coverage detected