Go to file
bluss e4a6956e5a Add doc(html_root_url) and other doc attrs to each crate
Also update to use https instead of http. This avois mixed content
degradation on docs.rs.

The doc root URLs are correct as they are, the URL does not include the
crate name itself.
2016-11-01 02:14:23 +01:00
.travis Add new crate num-derive as an new replacement for num-macro 2016-09-28 13:33:13 +02:00
benches bigint: allow `Sub` to work in-place on the RHS 2016-07-08 17:34:12 -07:00
bigint Add doc(html_root_url) and other doc attrs to each crate 2016-11-01 02:14:23 +01:00
complex Add doc(html_root_url) and other doc attrs to each crate 2016-11-01 02:14:23 +01:00
derive derive: bump to 0.1.37 2016-10-14 20:52:24 -07:00
doc Update repo and doc links 2015-11-12 18:40:13 -08:00
integer Add doc(html_root_url) and other doc attrs to each crate 2016-11-01 02:14:23 +01:00
iter Add doc(html_root_url) and other doc attrs to each crate 2016-11-01 02:14:23 +01:00
macros Add doc(html_root_url) and other doc attrs to each crate 2016-11-01 02:14:23 +01:00
rational Add doc(html_root_url) and other doc attrs to each crate 2016-11-01 02:14:23 +01:00
src Add doc(html_root_url) and other doc attrs to each crate 2016-11-01 02:14:23 +01:00
traits Add doc(html_root_url) and other doc attrs to each crate 2016-11-01 02:14:23 +01:00
.gitignore Update num-macros to Rust master 2015-05-14 10:19:47 -07:00
.rustup.sh Move .multirust.sh to .rustup.sh 2016-07-12 00:34:27 -07:00
.travis.yml .travis.yml: add a verbose build 2016-03-25 18:30:27 -07:00
Cargo.toml 0.1.36 bump for num, traits, macros, and the new derive 2016-09-29 23:31:23 -07:00
LICENSE-APACHE Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
LICENSE-MIT Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
Makefile Makefile: add complex and iter 2016-03-25 17:50:51 -07:00
README.md Update intros to better reflect the breadth of num 2015-11-21 16:39:00 -08:00

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;