|
BroSetIntersectWith Method |
Modifies the current set so that it contains only elements that are also in a specified collection.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public void IntersectWith(
IEnumerable<BroValue> other
)
Public Sub IntersectWith (
other As IEnumerable(Of BroValue)
)
abstract IntersectWith :
other : IEnumerable<BroValue> -> unit
override IntersectWith :
other : IEnumerable<BroValue> -> unit
public final void IntersectWith(
IEnumerable<BroValue> other
)
function IntersectWith(other);
Parameters
- other
- Type: System.Collections.GenericIEnumerableBroValue
The collection to compare to the current set.
Implements
ISetTIntersectWith(IEnumerableT)Exceptions 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