xan 0.8.1

The CSV command line magician.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod agg;
mod error;
mod functions;
mod interpreter;
mod parser;
mod select;
mod types;
mod utils;

pub use self::agg::{AggregationProgram, GroupAggregationProgram, Stats};
pub use self::error::{ConcretizationError, EvaluationError, SpecifiedEvaluationError};
pub use self::interpreter::Program;
pub use self::select::SelectionProgram;
pub use self::types::DynamicValue;