Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/dropbox/godropbox
/ isSet
Method
isSet
container/bitarray/bitarray.go:77–79 ·
view source on GitHub ↗
(idx int, off uint32)
Source
from the content-addressed store, hash-verified
75
}
76
77
func
(b *BitArray) isSet(idx int, off uint32) bool {
78
return
b.vs[idx]&(uint64(1)<<off) != 0
79
}
80
81
func
(b *BitArray) IsSet(i int) bool {
82
if
i < 0 || i >= b.n {
Callers
1
IsSet
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected