2 个版本
0.1.1 | 2022年12月9日 |
---|---|
0.1.0 | 2022年11月24日 |
#11 in #big-decimal
13KB
348 行
near-bigdecimal
NEAR 智能合约的大数
示例
let a = BigDecimal::from(3_u128);
let b = BigDecimal::from(10_u128);
let c = BigDecimal::from(49_u128);
assert_eq!((a + b).round_u128(), 13);
assert_eq!((a * b).round_u128(), 30);
assert_eq!((b / a).round_u128(), 3);
assert_eq!((b.pow(2)).round_u128(), 100);
assert_eq!((c.sqrt()).round_u128(), 7);
依赖
~5.5MB
~111K SLoC