]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/mitchellh/copystructure/README.md
deps: github.com/hashicorp/terraform@sdk-v0.11-with-go-modules
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / mitchellh / copystructure / README.md
CommitLineData
bae9f6d2
JC
1# copystructure\r
2\r
3copystructure is a Go library for deep copying values in Go.\r
4\r
5This allows you to copy Go values that may contain reference values\r
6such as maps, slices, or pointers, and copy their data as well instead\r
7of just their references.\r
8\r
9## Installation\r
10\r
11Standard `go get`:\r
12\r
13```\r
14$ go get github.com/mitchellh/copystructure\r
15```\r
16\r
17## Usage & Example\r
18\r
19For usage and examples see the [Godoc](http://godoc.org/github.com/mitchellh/copystructure).\r
20\r
21The `Copy` function has examples associated with it there.\r