|
BroSetExceptWith Method |
Removes all elements in the specified collection from the current set.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public void ExceptWith(
IEnumerable<BroValue> other
)
Public Sub ExceptWith (
other As IEnumerable(Of BroValue)
)
abstract ExceptWith :
other : IEnumerable<BroValue> -> unit
override ExceptWith :
other : IEnumerable<BroValue> -> unit
public final void ExceptWith(
IEnumerable<BroValue> other
)
function ExceptWith(other);
Parameters
- other
- Type: System.Collections.GenericIEnumerableBroValue
The collection of items to remove from the set.
Implements
ISetTExceptWith(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