forked from ebhomengo/niki
1
0
Fork 0
niki/vendor/github.com/mitchellh/copystructure
Erfan Mohammadi 86a962b0c9 style(niki): apply code formatting and linting (#85) 2024-07-25 03:15:04 +03:30
..
LICENSE feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
README.md feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
copier_time.go style(niki): apply code formatting and linting (#85) 2024-07-25 03:15:04 +03:30
copystructure.go style(niki): apply code formatting and linting (#85) 2024-07-25 03:15:04 +03:30

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.