open-consul/vendor/github.com/mitchellh/copystructure
Jeff Mitchell e0068431f5 Chunking support (#6172)
* Initial chunk support

This uses the go-raft-middleware library to allow for chunked commits to the KV
2019-07-24 17:06:39 -04:00
..
.travis.yml Chunking support (#6172) 2019-07-24 17:06:39 -04:00
LICENSE Updates vendored dependencies. 2016-03-07 10:45:39 -08:00
README.md Updates vendored dependencies. 2016-03-07 10:45:39 -08:00
copier_time.go Updates vendored dependencies. 2016-03-07 10:45:39 -08:00
copystructure.go Chunking support (#6172) 2019-07-24 17:06:39 -04:00
go.mod Chunking support (#6172) 2019-07-24 17:06:39 -04:00
go.sum Chunking support (#6172) 2019-07-24 17:06:39 -04: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.