Perform an inplace AND with the doc ids from a given DocIdSetIterator, leaving only the bits set for which the doc ids are in common. These doc ids should be smaller than the maximum size passed to the constructor.

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

Syntax

C#
public virtual void InPlaceAnd(
	DocIdSetIterator disi
)
Visual Basic
Public Overridable Sub InPlaceAnd ( _
	disi As DocIdSetIterator _
)
Visual C++
public:
virtual void InPlaceAnd(
	DocIdSetIterator^ disi
)

Parameters

disi
Type: Lucene.Net.Search..::..DocIdSetIterator

[Missing <param name="disi"/> documentation for "M:Lucene.Net.Util.OpenBitSetDISI.InPlaceAnd(Lucene.Net.Search.DocIdSetIterator)"]

See Also