devela 0.26.0

A development layer of coherence.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// devela::text::parse
//
//! String parsing without structured semantics.
//

mod _reexport_core; // SYMLINK to /crates/base/core/src/text/parse/_reexport.rs

crate::structural_mods! { // _reexports
    _reexports {
        pub use super::_reexport_core::*;
        #[doc(inline)]
        pub use devela_base_core::text::{
            ByteSearch,
            TextParseError, TextParseErrorKind, TextScanner,
        };
    }
}