luet/vendor/github.com/mitchellh/copystructure
Ettore Di Giacinto 5ee1ff6d5a
⬆️ Bump to go 1.19 as requirement for building (#319)
* ⬆️ Bump to go 1.19 as requirement for building

Signed-off-by: mudler <mudler@c3os.io>

* ⬆️ Update vendor

* 🤖 Use go 1.19 in CI

* 🤖 Do not pull cover from makefile

Signed-off-by: mudler <mudler@c3os.io>

* 🤖 Fix permission issues

Signed-off-by: mudler <mudler@c3os.io>

* 🤖 Adapt test to getcap output changes

Signed-off-by: mudler <mudler@c3os.io>

---------

Signed-off-by: mudler <mudler@c3os.io>
2023-02-02 11:59:57 +01:00
..
copier_time.go Update vendor/ 2020-10-10 19:59:40 +02:00
copystructure.go Use goreleaser to build and release (#244) 2021-08-11 08:30:55 +02:00
LICENSE Update vendor/ 2020-10-10 19:59:40 +02:00
README.md Use goreleaser to build and release (#244) 2021-08-11 08:30:55 +02: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.