fn intersect<T>(lhs: HashSet<T>, rhs: HashSet<T>) -> HashSet<T>where
    T: Clone + Eq + Hash,
Expand description

Computes the intersection of two sets, consuming both sides and mutating and returning lhs.