fingertree 0.0.1

Finger Trees in Rust
1
2
3
4
5
6
7
8
9
10
11
#![crate_name="fingertree"]
#![crate_type="lib"]

#![license = "MIT"]
#![doc(html_root_url = "http://www.rust-ci.org/epsilonz/fingertree.rs/doc/fingertree/")]

//! This crate implements the Finger Tree data type.

extern crate epsilonz_algebra;

pub mod persistent;