ISet<T>.Overlaps(IEnumerable<T>) Method
Determines whether the current set overlaps with the specified collection.
public function Overlaps(const other: IEnumerable<T>): Boolean;
Parameters
- other
- Type: IEnumerable<T>
The collection to compare to the current set.
Return Value
Type: Boolean
True if the current set and other share at least one common element; otherwise, False.
- Spring.EArgumentNullException
- other is nil.