File: config.go

package info (click to toggle)
golang-github-twin-deepmerge 0.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 108 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 341 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
package deepmerge

type Config struct {
	// PreventMultipleDefinitionsOfKeysWithPrimitiveValue causes the return of an error if dst and src define
	// the same key and if said key has a value with a primitive type
	// This does not apply to slices or maps.
	//
	// Defaults to true
	PreventMultipleDefinitionsOfKeysWithPrimitiveValue bool
}