[go: up one dir, main page]

rpds 1.2.0

Persistent data structures with structural sharing
Documentation
use archery::{SharedPointer, SharedPointerKind};

#[cfg(feature = "std")]
pub type DefaultBuildHasher = std::collections::hash_map::RandomState;
#[cfg(not(feature = "std"))]
#[allow(deprecated)]
pub type DefaultBuildHasher = core::hash::BuildHasherDefault<core::hash::SipHasher>;

/// Assigns the content of `src` to `dest`.
pub fn replace<T: Clone, P>(dest: &mut T, mut src: SharedPointer<T, P>)
where
    P: SharedPointerKind,
{
    // To avoid unnecessary cloning we do this trick.  If we have exclusive ownership of the
    // data pointed to by `src` then no clone is done.
    core::mem::swap(dest, SharedPointer::make_mut(&mut src));
}

#[cfg(test)]
mod test;