24 releases (14 stable)

Uses old Rust 2015

1.7.1 May 30, 2020
1.7.0 Apr 21, 2019
1.6.0 May 13, 2018
1.5.1 Jan 14, 2018
0.5.1 Mar 21, 2015

#637 in Algorithms

Download history 896/week @ 2024-07-24 970/week @ 2024-07-31 1053/week @ 2024-08-07 1423/week @ 2024-08-14 1229/week @ 2024-08-21 1107/week @ 2024-08-28 1122/week @ 2024-09-04 895/week @ 2024-09-11 813/week @ 2024-09-18 1102/week @ 2024-09-25 894/week @ 2024-10-02 780/week @ 2024-10-09 1000/week @ 2024-10-16 1204/week @ 2024-10-23 1219/week @ 2024-10-30 765/week @ 2024-11-06

4,390 downloads per month
Used in 58 crates (7 directly)

MIT/Apache

190KB
3.5K SLoC

extprim

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

Thanks to RFC 1504 “int128”, you can use i128 and u128 directly on nightly Rust starting from 1.16. Using the built-in types are preferred.

Extra primitive types for stable Rust. Currently includes:

  • u128 (unsigned 128-bit integers)
  • i128 (signed 128-bit integers)

Documentation

You may also find other primitive types in other crates:

Usage

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

If you want to use the u128!() and i128!() macros, please include the extprim_literals plugin.

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

Example

#[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);
}

Dependencies

~1–1.9MB
~35K SLoC