6个版本
0.3.0 | 2024年1月5日 |
---|---|
0.2.2 | 2023年11月8日 |
0.1.1 | 2023年10月31日 |
#1969 in 算法
每月 65 次下载
21KB
371 行
Rust字符串计算
使用&str
或String
进行计算:加法、减法和乘法。浮点数计算往往存在浮点数错误,因此,您可能希望使用小数或整数。这里,我们使用整数而不是小数。
原因:首先,如果您知道在web3上执行计算和存储值的成本有多高,您就会知道原因。其次,有时它无法与某些依赖项一起使用。例如,一年前生成随机数且依赖于计算机状态的crate无法工作(尚未检查是否允许这样做),可能是为了保护主机计算机。因此,这个crate是编写时没有使用除了纯Rust内部库之外的任何依赖项。
用法
您可以使用此crate进行加法、减法和乘法。以下是一些示例。
use string_calc::{checked_add, checked_sub, checked_mul};
pub fn main() {
let lhs = "15.6";
let rhs = "12.35".to_owned();
let value_add: Result<String, &'static str> = checked_add(lhs, rhs);
let value_sub: Result<String, &'static str> = checked_sub(lhs, rhs);
let value_mul: Result<String, &'static str> = checked_mul(lhs, rhs);
let value_compare: Result<bool, &'static str> = compare(lhs, rhs, "gt");
// Negative numbers are also supported.
// And output results can be in negative form.
let lhs = "-12.3".to_owned();
let rhs = "2.8";
let value_add1: Result<String, &'static str> = checked_add(lhs, rhs);
// And if you want to sum an array/vector
let our_vec = vec!["12.432", "18.37", "21"];
let sum_of_our_vec: Result<String, &'static str> = sum(our_vec);
}