Create a SortedVIntList from an array of integers.
Namespace: Lucene.Net.UtilAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public SortedVIntList(
int[] sortedInts,
int inputSize
) |
Visual Basic |
---|
Public Sub New ( _
sortedInts As Integer(), _
inputSize As Integer _
) |
Visual C++ |
---|
public:
SortedVIntList(
array<int>^ sortedInts,
int inputSize
) |
Parameters
- sortedInts
- Type: array<System..::..Int32>[]()[][]
An array of sorted non negative integers.
- inputSize
- Type: System..::..Int32
The number of integers to be used from the array.
See Also