wp-primitives 0.1.1

Lightweight parsing primitives for the Warp Parse stack.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Scope evaluation utilities
//!
//! This module provides tools for matching and evaluating scoped content
//! with balanced delimiters.
//!
//! - [`ScopeEval`] - Basic scope matching with nested delimiters
//! - [`EscapedScopeEval`] - Scope matching with escape sequence support

mod basic;
mod escaped;

pub use basic::ScopeEval;
pub use escaped::EscapedScopeEval;