go.etcd.io/bbolt.Bucket.buckets (field)

10 uses

	go.etcd.io/bbolt (current package)
		bucket.go#L32: 	buckets  map[string]*Bucket // subbucket cache
		bucket.go#L58: 		b.buckets = make(map[string]*Bucket)
		bucket.go#L97: 	if b.buckets != nil {
		bucket.go#L98: 		if child := b.buckets[string(name)]; child != nil {
		bucket.go#L114: 	if b.buckets != nil {
		bucket.go#L115: 		b.buckets[string(name)] = child
		bucket.go#L245: 	delete(b.buckets, string(key))
		bucket.go#L528: 	for name, child := range b.buckets {
		bucket.go#L637: 	for _, child := range b.buckets {
		bucket.go#L698: 	for _, child := range b.buckets {