Show / Hide Table of Contents

Class Selection

A base class which represents a selection.

Inheritance
System.Object
Selection
DelegateSelection
HyperslabSelection
Namespace: HDF5.NET
Assembly: HDF5.NET.dll
Syntax
public abstract class Selection : object

Properties

| Improve this Doc View Source

TotalElementCount

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

Declaration
public abstract ulong TotalElementCount { get; }
Property Value
Type Description
System.UInt64

Methods

| Improve this Doc View Source

Walk(UInt64[])

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

Declaration
public abstract IEnumerable<Step> Walk(ulong[] limits)
Parameters
Type Name Description
System.UInt64[] limits

The dataset dimensions.

Returns
Type Description
IEnumerable<Step>

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

  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2023 Vincent Wilms