Class Selection
- Namespace
- PureHDF.Selections
- Assembly
- PureHDF.dll
A base class which represents a selection.
public abstract class Selection
- Inheritance
-
Selection
- Derived
Constructors
Selection()
protected Selection()
Properties
TotalElementCount
Gets the total number of elements which is used to preallocate the returned buffer.
public abstract ulong TotalElementCount { get; }
Property Value
Methods
Walk(ulong[])
The walk function is used to walk through the dataset and select the requested data.
public abstract IEnumerable<Step> Walk(ulong[] limits)
Parameters
limitsulong[]The dataset dimensions.
Returns
- IEnumerable<Step>
An enumerable which provides a sequence of steps to select the requested data.