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

Method Get

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

Source from the content-addressed store, hash-verified

162type BitSet []int64
163
164func (set BitSet) Get(i int) bool {
165 return (set[i/64] & (1 << (i % 64))) != 0
166}
167
168func (set BitSet) Set(i int) {
169 set[i/64] |= 1 << (i % 64)

Callers 12

generateMapFunction · 0.45
newStructFunction · 0.45
NewDecoderFunction · 0.45
UnmarshalFunction · 0.45
authenticateMethod · 0.45
wpkMethod · 0.45
ReadPacketMethod · 0.45
SizeFunction · 0.45
DecompressLZ4Function · 0.45
DecompressZlibFunction · 0.45
CompressZlibFunction · 0.45
EncodeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected