Table of Contents

Class IrregularHyperslabSelection

Namespace
PureHDF.Selections
Assembly
PureHDF.dll

An irregular hyperslab is a selection of elements from a hyper rectangle.

public class IrregularHyperslabSelection : Selection
Inheritance
IrregularHyperslabSelection

Properties

Rank

Gets the rank of the selection.

public int Rank { get; }

Property Value

int

TotalElementCount

Gets the total number of elements which is used to preallocate the returned buffer.

public override ulong TotalElementCount { get; }

Property Value

ulong

Methods

Walk(ulong[])

The walk function is used to walk through the dataset and select the requested data.

public override IEnumerable<Step> Walk(ulong[] limits)

Parameters

limits ulong[]

The dataset dimensions.

Returns

IEnumerable<Step>

An enumerable which provides a sequence of steps to select the requested data.