fn intersect_variadic<T>(sets: Vec<HashSet<T>>) -> HashSet<T>where
    T: Clone + Eq + Hash,
Expand description

Computes the intersection of a vector of sets.