Overwrite this method, if you like to receive the raw int range bounds. You can use this for e.g. debugging purposes (print out range bounds).

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

Syntax

C#
public virtual void AddRange(
	int min,
	int max,
	int shift
)
Visual Basic
Public Overridable Sub AddRange ( _
	min As Integer, _
	max As Integer, _
	shift As Integer _
)
Visual C++
public:
virtual void AddRange(
	int min, 
	int max, 
	int shift
)

Parameters

min
Type: System..::..Int32

[Missing <param name="min"/> documentation for "M:Lucene.Net.Util.NumericUtils.IntRangeBuilder.AddRange(System.Int32,System.Int32,System.Int32)"]

max
Type: System..::..Int32

[Missing <param name="max"/> documentation for "M:Lucene.Net.Util.NumericUtils.IntRangeBuilder.AddRange(System.Int32,System.Int32,System.Int32)"]

shift
Type: System..::..Int32

[Missing <param name="shift"/> documentation for "M:Lucene.Net.Util.NumericUtils.IntRangeBuilder.AddRange(System.Int32,System.Int32,System.Int32)"]

See Also