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

Method Get

CoreLib/Base/BitSet.h:251–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249 }
250
251 inline bool Get(uint32_t index) const
252 {
253 se_assert(index < Size);
254 return (Buf[index / 64] & (1ull << (index % 64))) != 0;
255 }
256
257 inline bool operator [] (uint32_t index) const
258 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected