func maps.Copy

9 uses

	maps (current package)
		maps.go#L62: func Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) {

	html/template
		escape.go#L592: 	maps.Copy(e1.output, e.output)
		escape.go#L597: 		maps.Copy(e.output, e1.output)
		escape.go#L598: 		maps.Copy(e.derived, e1.derived)
		escape.go#L599: 		maps.Copy(e.called, e1.called)

	net/http
		server.go#L3837: 		maps.Copy(dst, tw.h)
		transfer.go#L958: 	maps.Copy(*dst, src)

	text/template
		template.go#L106: 	maps.Copy(nt.parseFuncs, t.parseFuncs)
		template.go#L107: 	maps.Copy(nt.execFuncs, t.execFuncs)