modulepackage
1.2.0
Repository: https://github.com/mitchellh/copystructure.git
Documentation: pkg.go.dev
# README
copystructure
copystructure is a Go library for deep copying values in Go.
This allows you to copy Go values that may contain reference values such as maps, slices, or pointers, and copy their data as well instead of just their references.
Installation
Standard go get
:
$ go get github.com/mitchellh/copystructure
Usage & Example
For usage and examples see the Godoc.
The Copy
function has examples associated with it there.
# Variables
Copiers is a map of types that behave specially when they are copied.
ShallowCopiers is a map of pointer types that behave specially when they are copied.
# Type aliases
CopierFunc is a function that knows how to deep copy a specific type.