No Description

str4d 720893f67b Add support to BigUint.from_str_radix() for using _ as a visual separator 7 years ago
benches f523b9c359 Implement modpow() for BigUint backed by Montgomery Multiplication 7 years ago
bigint 720893f67b Add support to BigUint.from_str_radix() for using _ as a visual separator 7 years ago
ci 8b9cdaada2 Test and fix subcrates with --no-default-features 7 years ago
complex b29c13e54f Remove unnecessary PartialOrd constraint on new Rem implementation. 7 years ago
derive 59b8433a5e derive: bump to 0.1.41 7 years ago
doc b4026b9fec Update repo and doc links 9 years ago
integer 63aa15ae9a integer: bump to 0.1.35 7 years ago
iter fe55d1fb4e iter: bump to 0.1.34 7 years ago
macros 3adce78385 macros: bump to 0.1.37 7 years ago
rational 4e9b426c30 rational: bump to 0.1.39 7 years ago
src f8dcec366b Made requested changes. 8 years ago
traits 2f8f952d1d clean up unused macros 7 years ago
.gitignore 44679902bd Update num-macros to Rust master 10 years ago
.travis.yml 3299702e69 Whitelist branches for CI 7 years ago
Cargo.toml 97bc42854a Add CI badge 7 years ago
LICENSE-APACHE 482f0e0b74 Initial seeding from rust repo 10 years ago
LICENSE-MIT 482f0e0b74 Initial seeding from rust repo 10 years ago
README.md 8d64ff9708 Add CI badge 7 years ago
bors.toml b181cae401 Enable bors-ng 7 years ago

README.md

num

A collection of numeric types and traits for Rust.

This includes new types for big integers, rationals, and complex numbers, new traits for generic programming on numeric properties like Integer, and generic range iterators.

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]
num = "0.1"

and this to your crate root:

extern crate num;

Compatibility

Most of the num crates are tested for rustc 1.8 and greater. The exceptions are num-derive which requires at least rustc 1.15, and the deprecated num-macros which requires nightly rustc.