jetro-core 0.5.2

jetro-core: parser, compiler, and VM for the Jetro JSON query language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Substrate types for the query engine.
//!
//! Groups the foundational data representations:
//! - [`value`] — the `Val` type and its compound variants (`Arr`, `Obj`, …).
//! - [`view`] — borrowed `ValueView` projections over tape-backed documents.
//! - [`tape`] — simd-json tape representation and `StrRef` slices.
//! - [`runtime`] — per-evaluation runtime state shared across the engine.

pub(crate) mod context;
pub(crate) mod intern;
pub(crate) mod runtime;
pub(crate) mod tape;
pub(crate) mod value;
#[cfg_attr(not(test), allow(dead_code))]
pub(crate) mod view;