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

..03-May-2022-

.travis.ymlH A D24-Aug-2018108

LICENSEH A D24-Aug-20181.1 KiB

README.mdH A D24-Aug-2018529

copier_time.goH A D24-Aug-2018226

copier_time_test.goH A D24-Aug-2018266

copystructure.goH A D24-Aug-201812.8 KiB

copystructure_examples_test.goH A D24-Aug-2018357

copystructure_test.goH A D24-Aug-201817 KiB

go.modH A D24-Aug-201891

go.sumH A D24-Aug-2018183

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