peano 1.0.0

The peano numbers implemented in Rust's type system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
[![crates.io](https://img.shields.io/crates/v/peano.svg)](https://crates.io/crates/peanotypenum)
[![Build Status](https://travis-ci.org/paholg/peano.svg?branch=master)](https://travis-ci.org/paholg/peano)

# Peano

Peano is a library for type-level numbers in Rust. It has been supplanted by
[typenum](https://github.com/paholg/typenum), which does the same things (and more) and is ***much*** faster.

The advantage of peano is that it is much simpler; the entire library is a single file
that is under 400 lines of code, many of which are comments.

So, take a look if you want to explore type-level programming. If you want to import a
library, use typenum.