ergo-runtime 0.1.0-alpha.1

Canonical primitive contracts and reference implementations for the Ergo graph execution engine
Documentation
pub mod abs;
pub mod add;
pub mod and;
pub mod append;
pub mod const_bool;
pub mod const_number;
pub mod divide;
pub mod eq;
pub mod gt;
pub mod gte;
pub mod len;
pub mod lt;
pub mod lte;
pub mod max;
pub mod mean;
pub mod min;
pub mod multiply;
pub mod negate;
pub mod neq;
pub mod not;
pub mod or;
pub mod safe_divide;
pub mod select;
pub mod select_bool;
pub mod subtract;
pub mod sum;
pub mod window;

pub use abs::Abs;
pub use add::Add;
pub use and::And;
pub use append::Append;
pub use const_bool::ConstBool;
pub use const_number::ConstNumber;
pub use divide::Divide;
pub use eq::Eq;
pub use gt::Gt;
pub use gte::Gte;
pub use len::Len;
pub use lt::Lt;
pub use lte::Lte;
pub use max::Max;
pub use mean::Mean;
pub use min::Min;
pub use multiply::Multiply;
pub use negate::Negate;
pub use neq::Neq;
pub use not::Not;
pub use or::Or;
pub use safe_divide::SafeDivide;
pub use select::Select;
pub use select_bool::SelectBool;
pub use subtract::Subtract;
pub use sum::Sum;
pub use window::Window;