Class SparseBitArray32
Represents a sparse bitarray.
Inheritance
System.Object
SparseBitArray32
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public class SparseBitArray32 : IEnumerable<long>
Constructors
SparseBitArray32(Int64, Int32)
Creates a new sparse bitarray.
Declaration
public SparseBitArray32(long size, int blockSize)
Parameters
|
System.Int64
size
|
|
System.Int32
blockSize
|
Properties
Item[Int64]
Gets or sets the value at the given index.
Declaration
public bool this[long idx] { get; set; }
Parameters
|
System.Int64
idx
|
Property Value
|
System.Boolean
|
Length
Returns the length of this array.
Declaration
public long Length { get; }
Property Value
|
System.Int64
|
Methods
GetEnumerator()
Gets the enumerator.
Declaration
public IEnumerator<long> GetEnumerator()
Returns
|
IEnumerator<System.Int64>
|