func maps.Clone

12 uses

	maps (current package)
		maps.go#L50: func Clone[M ~map[K]V, K comparable, V any](m M) M {

	crypto/x509
		verify.go#L1377: 	userConstrainedPolicySet := maps.Clone(authorityConstrainedPolicySet)

	go.pact.im/x/httptrack
		stats.go#L171: 	s.conns, conns = maps.Clone(s.conns), s.conns

	go.pact.im/x/plumb/internal/emit
		name.go#L47: 	return &allocator{used: maps.Clone(a.used)}

	go.pact.im/x/plumb/internal/solve
		joint.go#L102: 				trial := maps.Clone(c)
		revision.go#L40: 			merged := maps.Clone(c)
		revision.go#L65: 		union := maps.Clone(pin)
		revision.go#L93: 			upgraded := maps.Clone(c)
		solve.go#L567: 	s.pinnings[in] = maps.Clone(bind)

	net/http
		request.go#L411: 	r2.otherValues = maps.Clone(r.otherValues)
		transport.go#L374: 		npm := maps.Clone(t.TLSNextProto)
		transport.go#L885: 	newMap := maps.Clone(oldMap)