├── .gitignore ├── CHANGELOG.md ├── COMPARISON.md ├── Cargo.toml ├── LICENSE-MIT ├── README.md └── src ├── const_scale_fpdec.rs ├── fpdec_inner.rs ├── inner_i128.rs ├── inner_shorts.rs ├── lib.rs ├── none_scale_common.rs ├── oob_scale_fpdec.rs └── rounding_div.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COMPARISON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/COMPARISON.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/README.md -------------------------------------------------------------------------------- /src/const_scale_fpdec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/src/const_scale_fpdec.rs -------------------------------------------------------------------------------- /src/fpdec_inner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/src/fpdec_inner.rs -------------------------------------------------------------------------------- /src/inner_i128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/src/inner_i128.rs -------------------------------------------------------------------------------- /src/inner_shorts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/src/inner_shorts.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/none_scale_common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/src/none_scale_common.rs -------------------------------------------------------------------------------- /src/oob_scale_fpdec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/src/oob_scale_fpdec.rs -------------------------------------------------------------------------------- /src/rounding_div.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuBingzheng/primitive_fixed_point_decimal/HEAD/src/rounding_div.rs --------------------------------------------------------------------------------