├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── errors.go ├── go.mod ├── hashstructure.go ├── hashstructure_examples_test.go ├── hashstructure_test.go └── include.go /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/hashstructure/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/hashstructure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/hashstructure/HEAD/README.md -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/hashstructure/HEAD/errors.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/hashstructure/v2 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /hashstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/hashstructure/HEAD/hashstructure.go -------------------------------------------------------------------------------- /hashstructure_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/hashstructure/HEAD/hashstructure_examples_test.go -------------------------------------------------------------------------------- /hashstructure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/hashstructure/HEAD/hashstructure_test.go -------------------------------------------------------------------------------- /include.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/hashstructure/HEAD/include.go --------------------------------------------------------------------------------