Searched defs:intset (Results 1 – 2 of 2) sorted by relevance
278 type intset struct { struct279 small uint64 // bitset, used if n < 64280 large map[int]bool // set, used if n >= 64283 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 {
72 type intset map[int]struct{} type