[]
Returns whether 2 sets intersects.
public static bool Intersects(IOrderedSet<int> set1, IOrderedSet<int> set2)
Public Shared Function Intersects(set1 As IOrderedSet(Of Integer), set2 As IOrderedSet(Of Integer)) As Boolean
| Type | Name | Description |
|---|---|---|
| IOrderedSet<int> | set1 | The first set. |
| IOrderedSet<int> | set2 | The second set. |
| Type | Description |
|---|---|
| bool | Whether they intersect. |