devela/text/parse/mod.rs
1// devela::text::parse
2//
3//! String parsing without structured semantics.
4//
5
6mod byte_search; // ByteSearch, dep_memchr fns alternatives
7mod reexports;
8
9crate::items! { // structural access: _mods, _all, _always
10 #[allow(unused)]
11 pub use _mods::*;
12 #[allow(unused)] #[doc(hidden, no_inline)]
13 pub use _always::*;
14
15 mod _mods {
16 pub use super::{byte_search::*, reexports::*};
17 }
18 pub(super) mod _all {
19 #[doc(inline)]
20 pub use super::_mods::*;
21 }
22 pub(super) mod _always { #![allow(unused)]
23 pub use super::reexports::*;
24 }
25}