/deepcopy

library to make deep copies in go

Primary LanguageGoMIT LicenseMIT

deepcopy

library to make deep copies in go

   newValue := deepcopy.Do(value)

It manages when struct have pointers to parents/children. e.g:

   type MyStruct struct {
        Parent *MyStruct
        Children []*MyStruct
   }

Unexported fields are not copied.