VelocityDbHashSetTOverlaps Method |
Checks if this set overlaps other (i.e. they share at least one item)
Namespace:
VelocityDb.Collection
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public bool Overlaps(
IEnumerable<T> other
)
Public Function Overlaps (
other As IEnumerable(Of T)
) As Boolean
public:
bool Overlaps(
IEnumerable<T>^ other
)
member Overlaps :
other : IEnumerable<'T> -> bool
Parameters
- other
- Type: System.Collections.GenericIEnumerableT
[Missing <param name="other"/> documentation for "M:VelocityDb.Collection.VelocityDbHashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})"]
Return Value
Type:
Booleantrue if these have at least one common element; false if disjoint
See Also