Errors reported by Mergo when it finds invalid arguments.
var ( ErrNilArguments = errors.New("src and dst must not be nil") ErrDifferentArgumentsTypes = errors.New("src and dst must be of same type") ErrNotSupported = errors.New("only structs, maps, and slices are supported") ErrExpectedMapAsDestination = errors.New("dst was expected to be a map") ErrExpectedStructAsDestination = errors.New("dst was expected to be a struct") ErrNonPointerArgument = errors.New("dst must be a pointer") )
func Map(dst, src interface{}, opts ...func(*Config)) error
Map sets fields' values in dst from src. src can be a map with string keys or a struct. dst must be the opposite: if src is a map, dst must be a valid pointer to struct. If src is a struct, dst must be map[string]interface{}. It won't merge unexported (private) fields and will do recursively any exported field. If dst is a map, keys will be src fields' names in lower camel case. Missing key in src that doesn't match a field in dst will be skipped. This doesn't apply if dst is a map. This is separated method from Merge because it is cleaner and it keeps sane semantics: merging equal types, mapping different (restricted) types.
func MapWithOverwrite(dst, src interface{}, opts ...func(*Config)) error
MapWithOverwrite will do the same as Map except that non-empty dst attributes will be overridden by non-empty src attribute values. Deprecated: Use Map(…) with WithOverride
func Merge(dst, src interface{}, opts ...func(*Config)) error
Merge will fill any empty for value type attributes on the dst struct using corresponding src attributes if they themselves are not empty. dst and src must be valid same-type structs and dst must be a pointer to struct. It won't merge unexported (private) fields and will do recursively any exported field.
func MergeWithOverwrite(dst, src interface{}, opts ...func(*Config)) error
MergeWithOverwrite will do the same as Merge except that non-empty dst attributes will be overridden by non-empty src attribute values. Deprecated: use Merge(…) with WithOverride
func WithAppendSlice(config *Config)
WithAppendSlice will make merge append slices instead of overwriting it.
func WithOverride(config *Config)
WithOverride will make merge override non-empty dst attributes with non-empty src attributes values.
func WithOverrideEmptySlice(config *Config)
WithOverrideEmptySlice will make merge override empty dst slice with empty src slice.
func WithOverwriteWithEmptyValue(config *Config)
WithOverwriteWithEmptyValue will make merge override non empty dst attributes with empty src attributes values.
func WithSliceDeepCopy(config *Config)
WithSliceDeepCopy will merge slice element one by one with Overwrite flag.
func WithTransformers(transformers Transformers) func(*Config)
WithTransformers adds transformers to merge, allowing to customize the merging of some types.
func WithTypeCheck(config *Config)
WithTypeCheck will make merge check types while overwriting it (must be used with WithOverride).
func WithoutDereference(config *Config)
WithoutDereference prevents dereferencing pointers when evaluating whether they are empty (i.e. a non-nil pointer is never considered empty).
type Config struct { Transformers Transformers Overwrite bool ShouldNotDereference bool AppendSlice bool TypeCheck bool // contains filtered or unexported fields }
type Transformers interface { Transformer(reflect.Type) func(dst, src reflect.Value) error }