view src/lib.rs @ 11:e68172b81e2b

Change seek method to find equal or greater element
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 10 Jun 2016 21:14:30 +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() {}
}