MCPcopy Create free account
hub / github.com/ZeppelinMC/Zeppelin / Set

Method Set

protocol/net/io/encoding/encoding.go:168–170  ·  view source on GitHub ↗
(i int)

Source from the content-addressed store, hash-verified

166}
167
168func (set BitSet) Set(i int) {
169 set[i/64] |= 1 << (i % 64)
170}
171
172func (set BitSet) Unset(i int) {
173 set[i/64] &= ^(1 << (i % 64))

Callers 4

DecodeRootCompoundMethod · 0.45
DecodeMethod · 0.45
decodeCompoundStructMethod · 0.45
decodeListMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected