intersect method

  1. @override
IndexedSeq<A> intersect(
  1. RSeq<A> that
)
override

Returns a new collection with the intersection of this and that, i.e. all elements that appear in both collections.

Implementation

@override
IndexedSeq<A> intersect(RSeq<A> that) => super.intersect(that).toIndexedSeq();