|
BroSetRemove Method |
Removes the first occurrence of the specified
BroValue from this
BroSet.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool Remove(
BroValue value
)
Public Function Remove (
value As BroValue
) As Boolean
abstract Remove :
value : BroValue -> bool
override Remove :
value : BroValue -> bool
public final boolean Remove(
BroValue value
)
Parameters
- value
- Type: BroccoliSharpBroValue
The BroValue to remove from this BroSet.
Return Value
Type:
Booleantrue if
value was successfully removed from this
BroSet; otherwise,
false.
This method also returns
false if
value is not found in the original
BroSet.
Implements
ICollectionTRemove(T)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