• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.travis.ymlH A D24-Aug-2018108 139

LICENSEH A D24-Aug-20181.1 KiB2217

README.mdH A D24-Aug-2018529 2213

copier_time.goH A D24-Aug-2018226 1611

copier_time_test.goH A D24-Aug-2018266 1815

copystructure.goH A D24-Aug-201812.8 KiB549362

copystructure_examples_test.goH A D24-Aug-2018357 2316

copystructure_test.goH A D24-Aug-201817 KiB1,084835

go.modH A D24-Aug-201891 42

go.sumH A D24-Aug-2018183 32

README.md

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