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