├── .gitignore ├── LICENSE ├── README.md ├── doc.go ├── get.go ├── get_test.go ├── ok.go ├── ok_test.go ├── set.go └── set_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/doc.go -------------------------------------------------------------------------------- /get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/get.go -------------------------------------------------------------------------------- /get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/get_test.go -------------------------------------------------------------------------------- /ok.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/ok.go -------------------------------------------------------------------------------- /ok_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/ok_test.go -------------------------------------------------------------------------------- /set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/set.go -------------------------------------------------------------------------------- /set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matryer/m/HEAD/set_test.go --------------------------------------------------------------------------------