C# Class Bigio.BigArray.Support_Classes.ArrayMap.BlockRange

Object of BlockRange class contain information of some range inside the block.
Afficher le fichier Open project: 80LevelElf/Bigio Class Usage Examples

Méthodes publiques

Свойство Type Description
CommonStartIndex int
Count int
Subindex int

Méthodes publiques

Méthode Description
BlockRange ( int subindex, int count, int commonStartIndex )

Create new instance of BlockRange.

Equals ( BlockRange other ) : bool

Check equal of current BlockRange and other BlockRange.

Method Details

BlockRange() public méthode

Create new instance of BlockRange.
public BlockRange ( int subindex, int count, int commonStartIndex )
subindex int Subindex(internal block index) of starting of range.
count int Count of elements of the block.
commonStartIndex int Common zero-based index(across all collection) of block start of the block.

Equals() public méthode

Check equal of current BlockRange and other BlockRange.
public Equals ( BlockRange other ) : bool
other BlockRange Other to check.
Résultat bool

Property Details

CommonStartIndex public_oe property

Common zero-based index(across all collection) of block start of the block.
public int CommonStartIndex
Résultat int

Count public_oe property

Count of elements of the block.
public int Count
Résultat int

Subindex public_oe property

Subindex(internal block index) of start of range.
public int Subindex
Résultat int