├── .deepsource.toml ├── .gitignore ├── _examples └── decimal.go ├── decomposer.go ├── decomposer_test.go ├── fixed.go ├── fixed.iml ├── fixed_bench_test.go ├── fixed_test.go ├── go.mod ├── go.sum ├── license.txt ├── readme.md ├── sql.go ├── sql_test.go └── varint.go /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/.gitignore -------------------------------------------------------------------------------- /_examples/decimal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/_examples/decimal.go -------------------------------------------------------------------------------- /decomposer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/decomposer.go -------------------------------------------------------------------------------- /decomposer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/decomposer_test.go -------------------------------------------------------------------------------- /fixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/fixed.go -------------------------------------------------------------------------------- /fixed.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/fixed.iml -------------------------------------------------------------------------------- /fixed_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/fixed_bench_test.go -------------------------------------------------------------------------------- /fixed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/fixed_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/go.sum -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/readme.md -------------------------------------------------------------------------------- /sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/sql.go -------------------------------------------------------------------------------- /sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/sql_test.go -------------------------------------------------------------------------------- /varint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robaho/fixed/HEAD/varint.go --------------------------------------------------------------------------------