MCPcopy Create free account
hub / github.com/apache/iotdb-client-go / UnMark

Method UnMark

client/bitmap.go:52–54  ·  view source on GitHub ↗
(position int)

Source from the content-addressed store, hash-verified

50}
51
52func (b *BitMap) UnMark(position int) {
53 b.bits[position/8] &= UnmarkBitUtil[position%8]
54}
55
56func (b *BitMap) IsMarked(position int) bool {
57 return (b.bits[position/8] & BitUtil[position%8]) != 0

Callers 1

SwapMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected