Skip to main content

Module column

Module column 

Source
Expand description

§Column Module - Lazy Column Reference

Provides the Column type for referencing columns by name without requiring explicit Field construction. Used for ergonomic column selection APIs.

§Example

use minarrow::{column, Column};

// Create column references
let col_a = column("employee_id");
let col_b = Column::new("salary");

Structs§

Column
Lazy reference to a column by name

Functions§

column
User-facing constructor for column references