6个版本
0.1.7 | 2023年10月30日 |
---|---|
0.1.5 | 2022年12月8日 |
0.0.1 |
|
#724 在 编码
23KB
545 行
科学记数法数字转换器
该库可以将包含科学记数法数字的输入文本转换为数字,例如
1234.5678e-2
到数字,表示为以下元组
(sign, mantissa-hi-64-bits, mantissa-lo-64-bits, exponent)
示例
use scidec::{Number, number_from_string};
let result = number_from_string("1234.5678e-2");
match result {
Number::Fin(false, 0, 12345678, -6) => {}
_ => panic!()
}
许可证
根据您的选择,许可协议可以是以下两种之一
。
贡献
您有意提交以包含在本作品中的所有贡献,将根据上述条款双许可,不附加任何额外的条款或条件。