Home
last modified time | relevance | path

Searched defs:intset (Results 1 – 1 of 1) sorted by relevance

/external/starlark-go/starlark/
Dunpack.go278 type intset struct { struct
279 small uint64 // bitset, used if n < 64
280 large map[int]bool // set, used if n >= 64
283 func (is *intset) init(n int) {
289 func (is *intset) set(i int) (prev bool) {
300 func (is *intset) get(i int) bool {
307 func (is *intset) len() int {