Click or drag to resize
BroccoliSharp BroSetOverlaps Method
Determines whether the current set overlaps with the specified collection.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public bool Overlaps(
	IEnumerable<BroValue> other
)

Parameters

other
Type: System.Collections.GenericIEnumerableBroValue
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.

Implements

ISetTOverlaps(IEnumerableT)
Exceptions
ExceptionCondition
ArgumentNullExceptionother is null.
ObjectDisposedExceptionCannot execute set operation, BroSet is disposed.
Remarks
This is not a native Bro set operation. Function will perform expected task, but for large data sets operation may be expensive.
See Also