num-traits/README.md

25 lines
425 B
Markdown
Raw Normal View History

2014-09-23 20:27:05 +00:00
# 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.
2014-09-23 20:27:05 +00:00
2015-11-13 02:40:13 +00:00
[Documentation](http://rust-num.github.io/num)
2014-12-23 17:54:56 +00:00
2014-09-23 20:27:05 +00:00
## Usage
Add this to your `Cargo.toml`:
```toml
2014-11-20 20:07:56 +00:00
[dependencies]
num = "0.1"
2014-09-23 20:27:05 +00:00
```
and this to your crate root:
```rust
extern crate num;
```