2个稳定版本
1.2.0 | 2021年9月16日 |
---|---|
1.1.0 | 2020年9月21日 |
#623 in 算法
2,632 每月下载量
在 9 个crate中使用 (5 直接)
32KB
779 行
rust-bigint
为多个Rust BigInt实现提供常见功能特性
示例交互
// import BigInt from this library. use a feature flag to select the BigInt you need
// also, pull one or more traits from this library into scope
use rust_bigint::BigInt;
use rust_bigint::traits::Converter;
let number = BigInt::from(42);
// now use one of the methods exposed by the converter trait
let hex_str = number.to_hex();
查看特性以获取更多示例。
lib.rs
:
为多个Rust BigInt实现提供常见功能特性
示例交互
// import BigInt from this library. use a feature flag to select the BigInt you need
// also, pull one or more traits from this library into scope
use rust_bigint::BigInt;
use rust_bigint::traits::Converter;
let number = BigInt::from(42);
// now use one of the methods exposed by the converter trait
let hex_str = number.to_hex();
查看特性以获取更多示例。
依赖项
~0.5–1.4MB
~31K SLoC