MCPcopy Create free account
hub / github.com/Aegel5/SimpleSwitcher / ClearBit

Function ClearBit

imgui_tiny_app/imgui/imgui_internal.h:677–677  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

675 bool TestBit(int n) const { IM_ASSERT(n < (Storage.Size << 5)); return IM_BITARRAY_TESTBIT(Storage.Data, n); }
676 void SetBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArraySetBit(Storage.Data, n); }
677 void ClearBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArrayClearBit(Storage.Data, n); }
678};
679IM_MSVC_RUNTIME_CHECKS_RESTORE
680

Callers

nothing calls this directly

Calls 1

ImBitArrayClearBitFunction · 0.85

Tested by

no test coverage detected