MCPcopy Create free account
hub / github.com/Norbyte/bg3se / set

Method set

CoreLib/Base/SparseArray.h:110–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108 }
109
110 void set(uint32_t index, T const& value)
111 {
112 se_assert(index < values_.size());
113 mask_.Set(index);
114 values_[index] = value;
115 }
116
117 void set(uint32_t index, T&& value)
118 {

Callers 2

setMethod · 0.45
AddMethod · 0.45

Calls 2

sizeMethod · 0.45
SetMethod · 0.45

Tested by

no test coverage detected