num 0.0.5

Simple numerics. This crate contains basic arbitrary-sized integer, rational, and complex types.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# num

Arbitrary sized numeric types for Rust.

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
num = "*"
```

and this to your crate root:

```rust
extern crate num;
```