Returns the popcount or cardinality of the intersection of the two sets. Neither set is modified.

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

Syntax

C#
public static long IntersectionCount(
	OpenBitSet a,
	OpenBitSet b
)
Visual Basic
Public Shared Function IntersectionCount ( _
	a As OpenBitSet, _
	b As OpenBitSet _
) As Long
Visual C++
public:
static long long IntersectionCount(
	OpenBitSet^ a, 
	OpenBitSet^ b
)

Parameters

a
Type: Lucene.Net.Util..::..OpenBitSet

[Missing <param name="a"/> documentation for "M:Lucene.Net.Util.OpenBitSet.IntersectionCount(Lucene.Net.Util.OpenBitSet,Lucene.Net.Util.OpenBitSet)"]

b
Type: Lucene.Net.Util..::..OpenBitSet

[Missing <param name="b"/> documentation for "M:Lucene.Net.Util.OpenBitSet.IntersectionCount(Lucene.Net.Util.OpenBitSet,Lucene.Net.Util.OpenBitSet)"]

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Util.OpenBitSet.IntersectionCount(Lucene.Net.Util.OpenBitSet,Lucene.Net.Util.OpenBitSet)"]

See Also