Clears a range of bits. Clearing past the end does not change the size of the set.

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

Syntax

C#
public virtual void Clear(
	int startIndex,
	int endIndex
)
Visual Basic
Public Overridable Sub Clear ( _
	startIndex As Integer, _
	endIndex As Integer _
)
Visual C++
public:
virtual void Clear(
	int startIndex, 
	int endIndex
)

Parameters

startIndex
Type: System..::..Int32
lower index
endIndex
Type: System..::..Int32
one-past the last bit to clear

See Also