Categorygithub.com/mitchellh/copystructure
modulepackage
1.2.0
Repository: https://github.com/mitchellh/copystructure.git
Documentation: pkg.go.dev

# README

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.

# Functions

Copy returns a deep copy of v.
Must is a helper that wraps a call to a function returning (interface{}, error) and panics if the error is non-nil.

# Variables

Copiers is a map of types that behave specially when they are copied.
ShallowCopiers is a map of pointer types that behave specially when they are copied.

# Structs

No description provided by the author

# Type aliases

CopierFunc is a function that knows how to deep copy a specific type.