Тайлбар байхгүй

Homu bda31b1a33 Auto merge of #252 - est31:master, r=cuviper 8 жил өмнө
.travis b7e64074b2 Add new crate num-derive as an new replacement for num-macro 8 жил өмнө
benches 388a3132b8 bigint: allow `Sub` to work in-place on the RHS 8 жил өмнө
bigint ff2a350e98 Use the integer32 playground 8 жил өмнө
complex 5531031252 complex: derive Eq 8 жил өмнө
derive 9aced4066e derive: custom derive is now stable 8 жил өмнө
doc b4026b9fec Update repo and doc links 9 жил өмнө
integer ff2a350e98 Use the integer32 playground 8 жил өмнө
iter ff2a350e98 Use the integer32 playground 8 жил өмнө
macros 7ebef5bbe6 macros: update string interning 8 жил өмнө
rational fd44a86866 rational: test_recip_fail: Correct should_panic syntax 8 жил өмнө
src ff2a350e98 Use the integer32 playground 8 жил өмнө
traits ff2a350e98 Use the integer32 playground 8 жил өмнө
.gitignore 44679902bd Update num-macros to Rust master 10 жил өмнө
.rustup.sh 15949b257a Move .multirust.sh to .rustup.sh 8 жил өмнө
.travis.yml 015cd0be43 .travis.yml: add a verbose build 9 жил өмнө
Cargo.toml f25a3bd51d 0.1.36 bump for num, traits, macros, and the new derive 8 жил өмнө
LICENSE-APACHE 482f0e0b74 Initial seeding from rust repo 10 жил өмнө
LICENSE-MIT 482f0e0b74 Initial seeding from rust repo 10 жил өмнө
Makefile 0114559adf Makefile: add complex and iter 9 жил өмнө
README.md 7fa80f7786 Update intros to better reflect the breadth of num 9 жил өмнө

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;