Determines whether this range overlaps with another range.
Namespace:
MongoDB.Driver.Core.Misc
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public bool Overlaps(
Range<T> other
)
Public Function Overlaps (
other As Range(Of T)
) As Boolean
member Overlaps :
other : Range<'T> -> bool
Parameters
- other
- Type: MongoDB.Driver.Core.MiscRangeT
The other range.
Return Value
Type:
BooleanTrue if this range overlaps with the other
See Also