Type of elements within the source iterable.
Type of elements within the other iterable.
The primary iterable.
Iterable compared against source.
Optionalcomparator: EqualityComparator<TElement | TSecond, TElement | TSecond>Optional equality comparator used to match elements across both iterables. Defaults to the library's standard equality comparison.
true when the iterables are disjoint; otherwise, false.
When the default comparator is used, the implementation buffers the source elements in a Set so it can short-circuit as soon as a shared element is detected. With a custom comparator, every pair of elements is compared, which may iterate each iterable multiple times; prefer the default comparator when possible for better performance.
Determines whether source and other share no equivalent elements.