open-consul/vendor/github.com/mitchellh/copystructure
James Phillips ee43212da4 Updates vendored dependencies.
This removes some unused dependencies that I know we plan to re-add later,
but this makes for a clean `godep save` for now.
2016-03-07 10:45:39 -08: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 Updates vendored dependencies. 2016-03-07 10:45:39 -08: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.