weld 0.4.0

Weld is a language and runtime for improving the performance of data-intensive applications.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A prelude for using the AST.
//!
//! This brings the variants of the all enums into scope.

pub use super::*;

pub use super::ast::BinOpKind::*;
pub use super::ast::BuilderKind::*;
pub use super::ast::ExprKind::*;
pub use super::ast::LiteralKind::*;
pub use super::ast::ScalarKind::*;
pub use super::ast::Type::*;
pub use super::ast::UnaryOpKind::*;