use std::rc::Rc as Ref;
#[path = "./ppar.rs"]
mod ppar;
pub use self::ppar::{IntoIter, Iter, Vector};
#[cfg(test)]
pub use ppar::validate;
impl<T> Vector<T>
where
T: Clone,
{
pub fn is_thread_safe(&self) -> bool {
false
}
#[cfg(test)]
pub fn is_rc_type() -> bool {
true
}
}