A collection of small, focused Go packages solving common problems not covered by the standard library.
- Go 1.25+
go get github.com/mrlm-net/go| Package | Description |
|---|---|
| Coming soon |
This project follows Go Proverbs:
- Clear is better than clever
- Make the zero value useful
- The bigger the interface, the weaker the abstraction
- A little copying is better than a little dependency
- Errors are values
# Format code
go fmt ./...
# Run static analysis
go vet ./...
# Run tests
go test ./...
# Run benchmarks
go test -bench=. ./...See LICENSE for details.