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

Method IsSet

CoreLib/Base/BaseArray.h:236–243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

234 }
235
236 inline bool IsSet(uint32_t index) const
237 {
238 if (index >= NumBits) {
239 return false;
240 }
241
242 return (Bits[index >> IndexBitsPerWord] & (TWord(1) << (index & (BitsPerWord - 1)))) != 0;
243 }
244
245 inline uint32_t size() const
246 {

Callers 3

GetElementMethod · 0.80
NextMethod · 0.80
SerializeArrayFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected