go.etcd.io/bbolt.node.children (field)

22 uses

	go.etcd.io/bbolt (current package)
		bucket.go#L656: 		parent.children = append(parent.children, n)
		node.go#L19: 	children   nodes
		node.go#L291: 		n.parent = &node{bucket: n.bucket, children: []*node{n}}
		node.go#L296: 	n.parent.children = append(n.parent.children, next)
		node.go#L344: 	sort.Sort(n.children)
		node.go#L345: 	for i := 0; i < len(n.children); i++ {
		node.go#L346: 		if err := n.children[i].spill(); err != nil {
		node.go#L352: 	n.children = nil
		node.go#L396: 		n.children = nil
		node.go#L428: 			n.children = child.children
		node.go#L474: 				child.parent.children = append(child.parent.children, child)
		node.go#L490: 				child.parent.children = append(child.parent.children, child)
		node.go#L509: 	for i, child := range n.children {
		node.go#L511: 			n.children = append(n.children[:i], n.children[i+1:]...)
		node.go#L541: 	for _, child := range n.children {