Table of Contents

Class Bool8Array

Namespace
Apache.Arrow
Assembly
Apache.Arrow.dll

Extension array for 1-byte boolean values, backed by an Int8Array.

public class Bool8Array : ExtensionArray, IArrowArray, IDisposable, IReadOnlyList<bool?>, IReadOnlyCollection<bool?>, IEnumerable<bool?>, IEnumerable
Inheritance
Bool8Array
Implements
Inherited Members

Constructors

Bool8Array(Bool8Type, IArrowArray)

public Bool8Array(Bool8Type bool8Type, IArrowArray storage)

Parameters

bool8Type Bool8Type
storage IArrowArray

Bool8Array(IArrowArray)

public Bool8Array(IArrowArray storage)

Parameters

storage IArrowArray

Properties

Count

public int Count { get; }

Property Value

int

this[int]

public bool? this[int index] { get; }

Parameters

index int

Property Value

bool?

StorageArray

public Int8Array StorageArray { get; }

Property Value

Int8Array

Methods

GetEnumerator()

public IEnumerator<bool?> GetEnumerator()

Returns

IEnumerator<bool?>

GetValue(int)

public bool? GetValue(int index)

Parameters

index int

Returns

bool?