pub const fn ascii() -> AsciiExpand description
Reference is_ascii or is_ascii.
Example
use neure::prelude::*;
use neu::*;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let ascii = ascii();
let ascii = ascii.repeat_times::<2>();
let mut ctx = CharsCtx::new("ab❤e");
assert_eq!(ctx.try_mat(&ascii)?, Span::new(0, 2));
assert!(ctx.try_mat(&ascii).is_err());
Ok(())
}