devela 0.28.0

A development substrate of coherence.
Documentation
// devela::text::parse::scanner
//
//! Defines [`TextScanner`]
//

// impls
mod core; // constructors, source views, cursor/range basics, predicate adapters
mod byte; // byte inspection, exact byte consumption, byte-delimited range scanning
mod ascii; // ASCII whitespace, identifiers, AsciiSet scanning
mod number; // ASCII numeric parsing
mod line; // EOL and line-oriented scanning
mod quote; // quoted string scanning and decoding
mod scalar; // UTF-8 scalar scanning

mod define; // TextScanner

crate::structural_mods! { // _mods
    _mods {
        pub use super::{
            define::*,
        };
    }
}