recollection 0.1.0

implementations and reimplementations of common data structures and algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod data;
pub mod error;
pub mod prelude;

pub use error::{RecolError, RecolResult};

pub fn init() -> RecolResult<()> {
    Ok(())
}