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

Function ClearBit

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

Source from the content-addressed store, hash-verified

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
594// Helper: ImSpan<>

Callers

nothing calls this directly

Calls 1

ImBitArrayClearBitFunction · 0.85

Tested by

no test coverage detected