open-vault/vendor/github.com/mitchellh/copystructure
Jeff Mitchell 9ebc57581d
Switch to go modules (#6585)
* Switch to go modules

* Make fmt
2019-04-13 03:44:06 -04:00
..
.travis.yml Switch to go modules (#6585) 2019-04-13 03:44:06 -04: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
go.mod Update Deps (#5454) 2018-10-03 09:55:26 -07:00
go.sum Update Deps (#5454) 2018-10-03 09:55:26 -07: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

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.