#i128 #u128 #primitive #type #don-t #extprim #extprim-literals

extprim_literals_macros

支持 extprim_literals 的内部库。通常您不需要直接使用此库。

3 个稳定版本

使用旧的Rust 2015版

2.0.3 2017年7月11日
2.0.2 2017年6月16日
2.0.0 2017年3月18日

#6 in #i128

每月 43 次下载
3 个crate中(通过 extprim_literals)使用

MIT/Apache

195KB
3.5K SLoC

extprim

Travis (Linux and OS X) Build status AppVeyor (Windows) Build status Coverage Status MIT / Apache 2.0

RFC 1504 “int128” 以来,您可以从Rust 1.16的nightly版开始直接使用 i128u128 类型。建议使用内置类型。

为稳定版Rust提供额外的基本类型。目前包括

  • u128(无符号128位整数)
  • i128(有符号128位整数)

文档

您也可能在其他crate中找到其他基本类型

用法

# Cargo.toml
[dependencies]
extprim = "1"

如果您想使用 u128!()i128!() 宏,请包含 extprim_literals 插件。

# Cargo.toml
[dependencies]
extprim = "1"
extprim_literals = "2"

示例

#[macro_use]
extern crate extprim_literals;
extern crate extprim;

use std::str::FromStr;
use extprim::i128::i128;

fn main() {
    let a = i128::from_str("100000000000000000000000000000000000000").unwrap();
            // convert string to u128 or i128
    let b = i128::new(10).pow(38);
            // 64-bit integers can be directly new'ed
    assert_eq!(a, b);

    let c = i128::from_parts(5421010862427522170, 687399551400673280);
            // represent using the higher- and lower-64-bit parts
    let d = c - a;
            // standard operators like +, -, *, /, %, etc. work as expected.
    assert_eq!(d, i128::zero());

    const e: i128 = i128!(100000000000000000000000000000000000000);
            // use the literal macros
    assert_eq!(a, e);
}

依赖关系

~1.1–2MB
~38K SLoC