Table of Contents

Class IArrowArrayExtensions

Namespace
Apache.Arrow
Assembly
Apache.Arrow.dll

Provides factory methods that return IReadOnlyList<T> views over Arrow arrays, transparently handling plain, dictionary-encoded, and run-end encoded layouts.

public static class IArrowArrayExtensions
Inheritance
IArrowArrayExtensions
Inherited Members

Methods

AsDecodedReadOnlyList<T>(IArrowArray)

Returns an IReadOnlyList<T> view for the given array, regardless of encoding. Null slots are represented as default(T). Callers should use nullable value types, as that's what the underlying IArrowArray uses.

public static IReadOnlyList<T> AsDecodedReadOnlyList<T>(this IArrowArray array)

Parameters

array IArrowArray

Returns

IReadOnlyList<T>

Type Parameters

T