pub trait IntersectUnchecked<Other: HList>: HList {
type Output: HList;
}
Expand description
Compute the intersection of two arbitrary HLists, with no sortedness
requirements. Yields an HList
of the common elements (in the order of
the left list).
This trait does not check that its inputs are sorted; it simply runs the
single-pass intersect algorithm on any HList
.