deepcopy

package
v1.0.10 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 12, 2024 License: MIT, MIT Imports: 2 Imported by: 0

README

deepCopy

forked from smallnest/deepcopy

License GoDoc build status Go Report Card

DeepCopy makes deep copies of things: unexported field values are not copied.

  • Support Embed type
  • Support Pointer deep copy
  • Support Map
  • Support Slice
  • Support Interface
  • Support Channel;

Forked from mohae/deepcopy and add generic support.

Usage

   cpy := deepcopy.Copy[T](orig)

Documentation

Overview

License: MIT, for more details check the included LICENSE file.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Copy added in v0.11.0

func Copy[T any](src T) T

Copy creates a deep copy of whatever is passed to it and returns the copy in an interface{}. The returned value will need to be asserted to the correct type.

Types

type Interface added in v0.11.0

type Interface interface {
	DeepCopy() interface{}
}

Interface for delegating copy process to type

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL