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

Method Clear

CoreLib/Base/BaseArray.h:226–234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

224 }
225
226 inline bool Clear(uint32_t index)
227 {
228 if (index >= NumBits) {
229 return false;
230 }
231
232 Bits[index >> IndexBitsPerWord] &= ~(TWord(1) << (index & (BitsPerWord - 1)));
233 return true;
234 }
235
236 inline bool IsSet(uint32_t index) const
237 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected