|
BroSetSymmetricExceptWith Method |
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public void SymmetricExceptWith(
IEnumerable<BroValue> other
)
Public Sub SymmetricExceptWith (
other As IEnumerable(Of BroValue)
)
abstract SymmetricExceptWith :
other : IEnumerable<BroValue> -> unit
override SymmetricExceptWith :
other : IEnumerable<BroValue> -> unit
public final void SymmetricExceptWith(
IEnumerable<BroValue> other
)
function SymmetricExceptWith(other);
Parameters
- other
- Type: System.Collections.GenericIEnumerableBroValue
The collection to compare to the current set.
Implements
ISetTSymmetricExceptWith(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