├── .github └── workflows │ ├── codeql-analysis.yml │ └── gosec.yml ├── .gitignore ├── LICENSE ├── README.md ├── bytes.go ├── bytes_test.go ├── compression.go ├── debug.go ├── doc.go ├── encryption.go ├── encryption_test.go ├── endian.go ├── endian_test.go ├── error_test.go ├── errors.go ├── file.go ├── file_test.go ├── go.mod ├── http.go ├── http_test.go ├── io.go ├── net.go ├── os.go ├── os_test.go ├── rand.go ├── rand_test.go ├── reflect.go ├── reflect_test.go ├── shortcuts.go ├── string.go ├── string_test.go ├── stringbuilder.go └── sync.go /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/gosec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/.github/workflows/gosec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/README.md -------------------------------------------------------------------------------- /bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/bytes.go -------------------------------------------------------------------------------- /bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/bytes_test.go -------------------------------------------------------------------------------- /compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/compression.go -------------------------------------------------------------------------------- /debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/debug.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/doc.go -------------------------------------------------------------------------------- /encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/encryption.go -------------------------------------------------------------------------------- /encryption_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/encryption_test.go -------------------------------------------------------------------------------- /endian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/endian.go -------------------------------------------------------------------------------- /endian_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/endian_test.go -------------------------------------------------------------------------------- /error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/error_test.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/errors.go -------------------------------------------------------------------------------- /file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/file.go -------------------------------------------------------------------------------- /file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/file_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ungerik/go-dry 2 | 3 | go 1.23 4 | -------------------------------------------------------------------------------- /http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/http.go -------------------------------------------------------------------------------- /http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/http_test.go -------------------------------------------------------------------------------- /io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/io.go -------------------------------------------------------------------------------- /net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/net.go -------------------------------------------------------------------------------- /os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/os.go -------------------------------------------------------------------------------- /os_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/os_test.go -------------------------------------------------------------------------------- /rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/rand.go -------------------------------------------------------------------------------- /rand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/rand_test.go -------------------------------------------------------------------------------- /reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/reflect.go -------------------------------------------------------------------------------- /reflect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/reflect_test.go -------------------------------------------------------------------------------- /shortcuts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/shortcuts.go -------------------------------------------------------------------------------- /string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/string.go -------------------------------------------------------------------------------- /string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/string_test.go -------------------------------------------------------------------------------- /stringbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/stringbuilder.go -------------------------------------------------------------------------------- /sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungerik/go-dry/HEAD/sync.go --------------------------------------------------------------------------------