view src/lib.rs @ 15:bc44456d88d3

Add some documentation to memtable/skipmap implementations.
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 11 Jun 2016 11:51:46 +0200
parents e1ae33383eb8
children 0e88ae259968
line wrap: on
line source

extern crate rand;
extern crate integer_encoding;

pub use skipmap::Comparator;

mod memtable;
mod skipmap;
mod types;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}