MessagePackObjectDictionaryKeySetOverlaps Method |
Determines whether the current set and a specified collection share common elements.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public bool Overlaps(
IEnumerable<MessagePackObject> other
)
Public Function Overlaps (
other As IEnumerable(Of MessagePackObject)
) As Boolean
public:
virtual bool Overlaps(
IEnumerable<MessagePackObject>^ other
) sealed
abstract Overlaps :
other : IEnumerable<MessagePackObject> -> bool
override Overlaps :
other : IEnumerable<MessagePackObject> -> bool
Parameters
- other
- Type: System.Collections.GenericIEnumerableMessagePackObject
The collection to compare to the current set.
Return Value
Type:
Booleantrue if this set and
other share at least one common element; otherwise,
false.
Implements
ISetTOverlaps(IEnumerableT)Exceptions See Also