No Description

Josh Stone aebbc4fd37 bigint: fix and un-ignore the first doctest 9 years ago
.travis dac48aa4da test_nightly.sh: update the macros path 9 years ago
benches 1ebcc77513 Expand bigint shl/shr benchmarking 9 years ago
bigint aebbc4fd37 bigint: fix and un-ignore the first doctest 9 years ago
complex 8cb026e273 complex: update testing imports and hash 9 years ago
doc b4026b9fec Update repo and doc links 9 years ago
integer 8845ee11ed integer: reapply the rest of #167 9 years ago
iter e672d006a4 iter: update testing imports 9 years ago
macros 4361521f5a Move num-macros to macros to fit new naming system 9 years ago
rational 21a328ad6d bigint, rational: use std::hash only for testing 9 years ago
src 9d439e7860 num: don't need std::hash even for testing 9 years ago
traits b73cfa57bb traits: use `cast` items before `int` 9 years ago
.gitignore 44679902bd Update num-macros to Rust master 9 years ago
.multirust.sh ddc0b1ce0e Add a simple multirust script for local "CI" 9 years ago
.travis.yml 54685c46a1 Extract rational 9 years ago
Cargo.toml 7c0ab30bdc Fix subpackages metadata 9 years ago
LICENSE-APACHE 482f0e0b74 Initial seeding from rust repo 10 years ago
LICENSE-MIT 482f0e0b74 Initial seeding from rust repo 10 years ago
Makefile 0114559adf Makefile: add complex and iter 9 years ago
README.md 7fa80f7786 Update intros to better reflect the breadth of num 9 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;