MCPcopy Create free account
hub / github.com/RenderKit/embree / SetBit

Function SetBit

tutorials/common/imgui/imgui_internal.h:590–590  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

AddCharMethod · 0.85

Calls 1

ImBitArraySetBitFunction · 0.85

Tested by

no test coverage detected