|
BroVectorContains Method |
Determines whether this
BroVector contains specified
value.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool Contains(
BroValue value
)
Public Function Contains (
value As BroValue
) As Boolean
abstract Contains :
value : BroValue -> bool
override Contains :
value : BroValue -> bool
public final boolean Contains(
BroValue value
)
function Contains(value);
Parameters
- value
- Type: BroccoliSharpBroValue
The BroValue to locate in this BroVector.
Return Value
Type:
Booleantrue if
value is found in this
BroVector; otherwise,
false.
Implements
ICollectionTContains(T)Remarks
This method performs a linear search - an O(n) operation where n is
Count.
See Also