re_arrow_combinators 0.29.0-alpha.5

Type-safe, composable transformations for Arrow arrays.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Type-safe, composable transformations for Arrow arrays.
//!
//! This crate provides composable transformations for Arrow arrays.
//! Transformations are composable operations that convert one array type to another,
//! preserving structural properties like row counts and null handling.
//!
//! These transformations serve as building blocks for user-defined functions (UDFs)
//! in query engines like `DataFusion`, as well as SDK features like lenses.

mod error;
mod transform;

pub mod cast;
pub mod map;
pub mod reshape;

pub use crate::error::Error;
pub use crate::transform::{Compose, Transform};