Home
last modified time | relevance | path

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

/aosp_15_r20/external/starlark-go/starlark/
H A 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 {
/aosp_15_r20/prebuilts/go/linux-x86/src/go/doc/testdata/examples/
Dissue43658.go72 type intset map[int]struct{} type