open-vault/vendor/github.com/mitchellh/copystructure
Jeff Mitchell 9095e202d7 Update vendoring 2017-06-05 10:51:53 -04:00
..
LICENSE Migrate to built-in Go vendoring. 2016-02-18 15:06:02 -05:00
README.md Migrate to built-in Go vendoring. 2016-02-18 15:06:02 -05:00
copier_time.go Migrate to built-in Go vendoring. 2016-02-18 15:06:02 -05:00
copystructure.go Update vendoring 2017-06-05 10:51:53 -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.