Type Definition arrow_array::array::GenericBinaryArray

source ·
pub type GenericBinaryArray<OffsetSize> = GenericByteArray<GenericBinaryType<OffsetSize>>;
Expand description

See BinaryArray and LargeBinaryArray for storing binary data.

Implementations§

👎Deprecated: please use Self::DATA_TYPE instead

Get the data type of the array.

Creates a GenericBinaryArray from a vector of byte slices

See also Self::from_iter_values

Creates a GenericBinaryArray from a vector of Optional (null) byte slices

Creates a GenericBinaryArray based on an iterator of values without nulls

Returns an iterator that returns the values of array.value(i) for an iterator with each element i

Returns an iterator that returns the values of array.value(i) for an iterator with each element i

Safety

caller must ensure that the indexes in the iterator are less than the array.len()

Trait Implementations§

Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Creates a value from an iterator. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.