MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / SetBit

Function SetBit

KBotExt/imgui/imgui_internal.h:588–588  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

586 void Clear() { Storage.clear(); }
587 bool TestBit(int n) const { IM_ASSERT(n < (Storage.Size << 5)); return IM_BITARRAY_TESTBIT(Storage.Data, n); }
588 void SetBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArraySetBit(Storage.Data, n); }
589 void ClearBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArrayClearBit(Storage.Data, n); }
590};
591IM_MSVC_RUNTIME_CHECKS_RESTORE

Callers 1

AddCharMethod · 0.85

Calls 1

ImBitArraySetBitFunction · 0.85

Tested by

no test coverage detected