src.elv.sh/pkg/persistent/hashmap.bitmapNode.assoc (method, view implemented interface methods)

6 uses

	src.elv.sh/pkg/persistent/hashmap (current package)
		hashmap.go#L204: 		newChild, _ := emptyBitmapNode.assoc(shift+chunkBits, hash, k, v, h, eq)
		hashmap.go#L343: 	n, _ := emptyBitmapNode.assoc(shift, h1, k1, v1, h, eq)
		hashmap.go#L360: 				newNode.children[i], _ = emptyBitmapNode.assoc(
		hashmap.go#L392: func (n *bitmapNode) assoc(shift, hash uint32, k, v interface{}, h Hash, eq Equal) (node, bool) {
		hashmap.go#L400: 			newNode, _ := emptyBitmapNode.assoc(shift+chunkBits, hash, k, v, h, eq)
		hashmap.go#L536: 	return wrap.assoc(shift, hash, k, v, h, eq)