somen_language/lib.rs
1//! Utilities of the somen parser combinator for languages.
2
3#![cfg_attr(not(feature = "std"), no_std)]
4#![cfg_attr(feature = "nightly", feature(doc_cfg))]
5#![doc(test(attr(warn(warnings))))]
6
7#[cfg(feature = "alloc")]
8extern crate alloc;
9
10pub mod character;
11pub mod identifier;
12mod macros;
13pub mod numeric;