Given
var dst, src map[K]V
I can copy all entries from src into dst by doing
src
dst
for k, v := range sr
That looks like a perfectly fine way to do this to me. I don't think copying one map into another is common enough to have a one-liner solution.