ppom 0.7.0

Left Leaning Red Black index in Rust-lang
Documentation
//! Module implement fully-persistent ordered-map, faster but not thread safe.

use std::rc::Rc as Ref;

#[path = "./ppom.rs"]
mod ppom;

pub use self::ppom::OMap;

impl<K, V> OMap<K, V> {
    /// Return whether this instance is thread-safe.
    pub fn is_thread_safe(&self) -> bool {
        false
    }
}

#[cfg(test)]
#[path = "rc_test.rs"]
mod rc_test;