ferricel-core 0.2.2

Core compiler and runtime library for ferricel (CEL → Wasm)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! CEL extension library compiler functions.
//!
//! This module contains compiler implementations for the additional CEL functions
//! defined in the CEL extensions specification (string, list, and polymorphic operations).
//! See: <https://github.com/google/cel-spec/blob/master/extensions/>

pub mod bind;
pub mod block;
pub mod comprehensions;
pub mod encoders;
pub mod lists;
pub mod math;
pub mod poly;
pub mod regex;
pub mod sets;
pub mod strings;