Files
orchid/orchid-base/src/lib.rs
Lawrence Bethlenfalvy c461f82de1
Some checks failed
Rust / build (push) Has been cancelled
Custom lexers can now terminate operators
New constraint: custom lexer output is dropped whenever it is used to terminate an operator nested inside another custom lexer, because the recursive call has to return exactly one lexeme
2026-01-25 17:52:18 +01:00

34 lines
548 B
Rust

pub use async_once_cell;
use orchid_api as api;
pub mod binary;
pub mod box_cow;
pub mod boxed_iter;
pub mod char_filter;
pub mod clone;
pub mod combine;
pub mod error;
pub mod event;
pub mod format;
pub mod future_debug;
pub mod id_store;
pub mod interner;
pub mod iter_utils;
pub mod join;
mod localset;
pub mod location;
pub mod logging;
mod match_mapping;
pub mod msg;
pub mod name;
pub mod number;
pub mod parse;
pub mod pure_seq;
pub mod reqnot;
pub mod sequence;
pub mod side;
pub mod stash;
pub mod tl_cache;
pub mod tokens;
pub mod tree;