Interface IBits
Interface for Bitset-like structures.
Note
This API is experimental and might change in incompatible ways in the next release.
Namespace: Lucene.Net.Util
Assembly: Lucene.Net.dll
Syntax
public interface IBits
Properties
Length
Returns the number of bits in this set
Declaration
int Length { get; }
Property Value
Type | Description |
---|---|
int |
Methods
Get(int)
Returns the value of the bit with the specified index
.
Declaration
bool Get(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | Index, should be non-negative and < Length. The result of passing negative or out of bounds values is undefined by this interface, just don't do it! |
Returns
Type | Description |
---|---|
bool |
|