Crate polars_arrow
source ·Modules
- Contains the
ArrayandMutableArraytrait objects declaring arrays, as well as concrete arrays (such asUtf8ArrayandMutableUtf8Array). - 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
Arrayvia Arrow’s C Data Interface - mmap
io_ipcMemory maps regions defined on the IPC format intoArray. - Contains the declaration of
Offset - contains the
Scalartrait object representing individual items ofArrays, 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
Structs
Enums
- The enum
Eitherwith variantsLeftandRightis a general purpose sum type with two cases.