Type of elements within the source iterable.
Type of elements within the other iterable.
Key type produced by keySelector.
Key type produced by otherKeySelector.
The primary iterable.
Iterable compared against source.
Projection that produces the key evaluated for each source element.
Projection that produces the key evaluated for each element of other.
OptionalkeyComparator: EqualityComparator<TKey | TSecondKey, TKey | TSecondKey>Optional equality comparator applied to projected keys. Defaults to the library's standard equality comparison.
true when no projected keys intersect; otherwise, false.
Re-throws any error encountered while iterating either iterable or executing the selector projections/comparator.
When the default comparator is used, the implementation buffers the larger key collection in a Set and short-circuits as soon as an intersecting key is found. Supplying a custom comparator forces a full pairwise comparison, which may iterate both iterables repeatedly; prefer the default comparator when suitable.
Determines whether the key projections of source and other are mutually exclusive.