|
BroVectorInsert Method (Int32, BroValue) |
Inserts
value in this
BroVector at the specified
index.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public void Insert(
int index,
BroValue value
)
Public Sub Insert (
index As Integer,
value As BroValue
)
abstract Insert :
index : int *
value : BroValue -> unit
override Insert :
index : int *
value : BroValue -> unit
public final void Insert(
int index,
BroValue value
)
function Insert(index, value);
Parameters
- index
- Type: SystemInt32
The zero-based index at which value should be inserted. - value
- Type: BroccoliSharpBroValue
The BroValue to insert into this BroVector.
Implements
IListTInsert(Int32, T)Exceptions Remarks
This is not a native Bro vector operation. Function will perform expected task, but for large data sets operation may be expensive.
See Also