Class BitArrayExtensions
This class provides supporting methods of java.util.BitSet that are not present in System.Collections.BitArray.
Inheritance
System.Object
BitArrayExtensions
Assembly: DistributedLucene.Net.dll
Syntax
public static class BitArrayExtensions : object
Methods
Name | Description |
---|---|
And_UnequalLengths(BitArray, BitArray) | |
AndNot(BitArray, BitArray) | |
BitWiseEquals(BitArray, BitArray) | |
Cardinality(BitArray) | Returns the number of bits set to true in this BitSet. |
Clear(BitArray) | Sets all bits to false |
Clear(BitArray, Int32) | Sets the bit at the given |
Clear(BitArray, Int32, Int32) | |
Equal(BitArray, OpenBitSet) | |
Flip(BitArray, Int32, Int32) | |
NextClearBit(BitArray, Int32) | Returns the next un-set bit at or after index, or -1 if no such bit exists. |
NextSetBit(BitArray, Int32) | Returns the next set bit at or after index, or -1 if no such bit exists. |
Or_UnequalLengths(BitArray, BitArray) | |
PrevSetBit(BitArray, Int32) | |
SafeGet(BitArray, Int32) | |
SafeSet(BitArray, Int32, Boolean) | |
Set(BitArray, Int32) | Sets the bit at the given |
Set(BitArray, Int32, Int32) | |
Set(BitArray, Int32, Int32, Boolean) | Sets the bit at the given index range to true. |
Xor_UnequalLengths(BitArray, BitArray) |