terraform/vendor/github.com/mitchellh/copystructure
Radek Simko 14246bdfe9
vendor: go get github.com/mitchellh/copystructure@v1.0.0
2019-02-12 12:06:10 +00:00
..
.travis.yml vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
LICENSE Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
README.md Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
copier_time.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
copystructure.go Update vendor for DeepCopy issue 2018-03-14 20:13:36 -04:00
go.mod vendor: go get github.com/mitchellh/copystructure@v1.0.0 2019-02-12 12:06:10 +00:00
go.sum vendor: go get github.com/mitchellh/copystructure@v1.0.0 2019-02-12 12:06:10 +00:00

README.md

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.