1 个仓库
Programs generated from parsed and type-checked expressions to be reused across multiple datasets.
Distinct from Compile-Time Expression Evaluation: Candidates focus on compile-time constexpr (f2_mt2) or DB associations (f2_mt1), not the reusable program model for expressions.
Explore 1 awesome GitHub repository matching programming languages & runtimes · Compiled Expression Programs. Refine with filters or upvote what's useful.
cel-go is a Go implementation of the Common Expression Language, providing a type-safe engine for the evaluation of non-Turing complete, side-effect-free expressions. It functions as an embedded expression engine that converts human-readable strings into type-checked abstract syntax trees to ensure safe execution. The system utilizes a compile-once evaluate-many model, parsing and validating expressions into cached programs for repeated execution across different datasets. It further distinguishes itself as a partial state evaluator, using commutative logic to compute results and return resid
Parses and type-checks expressions into a reusable program to avoid redundant overhead during repeated execution.