[][src]Type Definition dashcache::arr::CachedSet

type CachedSet<A, H = ()> = CachedArr<A, Uniq, H>;

A cached set of elements

Implementations

impl<A: Deref + Clone> CachedSet<A>[src]

pub fn union_impl(&self, rhs: &CachedSet<A>) -> CachedSet<A>[src]

Take the union of two sets

Trait Implementations

impl<A: Deref> From<Vec<A>> for CachedSet<A>[src]

impl<A: Deref> FromIterator<A> for CachedSet<A>[src]