copystructure
copystructure copied to clipboard
Go (golang) library for deep copying values in Go.
Results
2
copystructure issues
Sort by
recently updated
recently updated
newest added
From the last lines of `copystructure.go`: ```go // wrapPtr is a helper that takes v and always make it *v. copystructure // stores things internally as pointers until the last...
Described case seems possible to implement I suppose (although did not look into the details yet) - at least "encoding/json" package manages to do this: ``` package main import (...