├── .appveyor.yml ├── .github └── workflows │ └── rust.yml ├── .gitignore ├── .gitlab-ci.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── RELEASES.md ├── benches └── bench_main.rs └── src ├── arith.rs ├── cast.rs ├── cmp.rs ├── consts.rs ├── convert.rs ├── display.rs ├── float_helper.rs ├── from_str.rs ├── helpers.rs ├── int_helper.rs ├── lib.rs ├── macros.rs ├── macros_frac.rs ├── macros_from_to.rs ├── macros_no_frac.rs ├── macros_round.rs ├── serdeize.rs ├── traits.rs ├── transcendental.rs ├── types ├── extra.rs └── mod.rs ├── wide_div.rs └── wrapping.rs /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | .idea 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/RELEASES.md -------------------------------------------------------------------------------- /benches/bench_main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/benches/bench_main.rs -------------------------------------------------------------------------------- /src/arith.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/arith.rs -------------------------------------------------------------------------------- /src/cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/cast.rs -------------------------------------------------------------------------------- /src/cmp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/cmp.rs -------------------------------------------------------------------------------- /src/consts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/consts.rs -------------------------------------------------------------------------------- /src/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/convert.rs -------------------------------------------------------------------------------- /src/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/display.rs -------------------------------------------------------------------------------- /src/float_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/float_helper.rs -------------------------------------------------------------------------------- /src/from_str.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/from_str.rs -------------------------------------------------------------------------------- /src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/helpers.rs -------------------------------------------------------------------------------- /src/int_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/int_helper.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/macros_frac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/macros_frac.rs -------------------------------------------------------------------------------- /src/macros_from_to.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/macros_from_to.rs -------------------------------------------------------------------------------- /src/macros_no_frac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/macros_no_frac.rs -------------------------------------------------------------------------------- /src/macros_round.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/macros_round.rs -------------------------------------------------------------------------------- /src/serdeize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/serdeize.rs -------------------------------------------------------------------------------- /src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/traits.rs -------------------------------------------------------------------------------- /src/transcendental.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/transcendental.rs -------------------------------------------------------------------------------- /src/types/extra.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/types/extra.rs -------------------------------------------------------------------------------- /src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/types/mod.rs -------------------------------------------------------------------------------- /src/wide_div.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/wide_div.rs -------------------------------------------------------------------------------- /src/wrapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/encointer/substrate-fixed/HEAD/src/wrapping.rs --------------------------------------------------------------------------------