Modules§
- Contains the
Array
andMutableArray
trait objects declaring arrays, as well as concrete arrays (such asUtf8Array
andMutableUtf8Array
). - Contains
Buffer
, an immutable container for all Arrow physical types (e.g. i32, f64). - contains a wide range of compute operations (e.g. [
arithmetics
],aggregate
, [filter
], [comparison
], and [sort
]) - contains FFI bindings to import and export
Array
via Arrow’s C Data Interface - mmap
io_ipc
Memory maps regions defined on the IPC format intoArray
. - Contains the declaration of
Offset
- Contains
RecordBatchT
, a container ofArray
where every array has the same length. - contains the
Scalar
trait object representing individual items ofArray
s, as well as concrete implementations such asBooleanScalar
. - Conversion methods for dates and times.
- Declares
TrustedLen
. - Sealed traits and implementations to handle all physical types used in this crate.
- Misc utilities used in different places in the crate.
Macros§
Enums§
- The enum
Either
with variantsLeft
andRight
is a general purpose sum type with two cases.