#percentage #percent #divide #subtraction #floats #multiply #percentages

bin+lib percent-rs

简单的用于整数和浮点数百分比的 crate

2 个版本

0.1.1 2024年7月23日
0.1.0 2024年7月4日

#2#subtraction

Download history 97/week @ 2024-07-01 4/week @ 2024-07-08 105/week @ 2024-07-22 9/week @ 2024-07-29

114 每月下载量

MIT 许可证

8KB
138 lines

Percent-RS

简单的百分比实现,可以添加、减去、乘以和除以。

使用方法

use percent_rs::Percentage;

fn main() {
    let percent = Percentage::from(50);
    let percent_decimal = Percentage::from_decimal(50.5);
    println!("{}", percent); // 50%
    println!("{}", percent_decimal); // 55.5%
}

依赖项

~115KB