|
BroSetIsProperSupersetOf Method |
Determines whether the current set is a proper (strict) superset of a specified collection.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool IsProperSupersetOf(
IEnumerable<BroValue> other
)
Public Function IsProperSupersetOf (
other As IEnumerable(Of BroValue)
) As Boolean
abstract IsProperSupersetOf :
other : IEnumerable<BroValue> -> bool
override IsProperSupersetOf :
other : IEnumerable<BroValue> -> bool
public final boolean IsProperSupersetOf(
IEnumerable<BroValue> other
)
function IsProperSupersetOf(other);
Parameters
- other
- Type: System.Collections.GenericIEnumerableBroValue
The collection to compare to the current set.
Return Value
Type:
Booleantrue if the current set is a proper superset of
other; otherwise,
false.
Implements
ISetTIsProperSupersetOf(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