Create a SortedVIntList from all elements of an array of integers.

Namespace: Lucene.Net.Util
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public SortedVIntList(
	int[] sortedInts
)
Visual Basic
Public Sub New ( _
	sortedInts As Integer() _
)
Visual C++
public:
SortedVIntList(
	array<int>^ sortedInts
)

Parameters

sortedInts
Type: array<System..::..Int32>[]()[][]
A sorted array of non negative integers.

See Also