import "github.com/fufuok/utils/generic/deepcopy"
License: MIT, for more details check the included LICENSE file.
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.
Interface for delegating copy process to type
type Interface interface {
DeepCopy() interface{}
}
Generated by gomarkdoc