Lines Matching full:ascii
11 … `"bc"` | `Ok('a')` |Matches one of the provided characters (works with non ASCII characters too)|
13 …Recognizes a specific suite of characters or bytes (see also [`Caseless`][crate::ascii::Caseless])|
91 //! - [`tab`][crate::ascii::tab]: Matches a tab character `\t`
92 //! - [`crlf`][crate::ascii::crlf]: Recognizes the string `\r\n`
93 //! - [`line_ending`][crate::ascii::line_ending]: Recognizes an end of line (both `\n` and `\r\n`)
94 //! - [`newline`][crate::ascii::newline]: Matches a newline character `\n`
95 //! - [`till_line_ending`][crate::ascii::till_line_ending]: Recognizes a string of any char except …
98 …lpha0`][crate::ascii::alpha0]: Recognizes zero or more lowercase and uppercase alphabetic characte…
99 …c0`][crate::ascii::alphanumeric0]: Recognizes zero or more numerical and alphabetic characters: `[…
100 //! - [`space0`][crate::ascii::space0]: Recognizes zero or more spaces and tabs. [`space1`][crate::…
101 …space0`][crate::ascii::multispace0]: Recognizes zero or more spaces, tabs, carriage returns and li…
102 //! - [`digit0`][crate::ascii::digit0]: Recognizes zero or more numerical characters: `[0-9]`. [`di…
103 …digit0`][crate::ascii::hex_digit0]: Recognizes zero or more hexadecimal numerical characters: `[0-…
104 …/! - [`oct_digit0`][crate::ascii::oct_digit0]: Recognizes zero or more octal characters: `[0-7]`. …
106 //! - [`float`][crate::ascii::float]: Parse a floating point number in a byte string
107 //! - [`dec_int`][crate::ascii::dec_int]: Decode a variable-width, decimal signed integer
108 //! - [`dec_uint`][crate::ascii::dec_uint]: Decode a variable-width, decimal unsigned integer
109 //! - [`hex_uint`][crate::ascii::hex_uint]: Decode a variable-width, hexadecimal integer
111 //! - [`escaped`][crate::ascii::escaped]: Matches a byte string with escaped characters
112 //! - [`escaped_transform`][crate::ascii::escaped_transform]: Matches a byte string with escaped ch…
118 //! - [`AsChar::is_alpha`][crate::stream::AsChar::is_alpha]: Tests if byte is ASCII alphabetic: `[A…
119 //! - [`AsChar::is_alphanum`][crate::stream::AsChar::is_alphanum]: Tests if byte is ASCII alphanume…
120 //! - [`AsChar::is_dec_digit`][crate::stream::AsChar::is_dec_digit]: Tests if byte is ASCII digit: …
121 //! - [`AsChar::is_hex_digit`][crate::stream::AsChar::is_hex_digit]: Tests if byte is ASCII hex dig…
122 //! - [`AsChar::is_oct_digit`][crate::stream::AsChar::is_oct_digit]: Tests if byte is ASCII octal d…
123 //! - [`AsChar::is_space`][crate::stream::AsChar::is_space]: Tests if byte is ASCII space or tab: `…
124 //! - [`AsChar::is_newline`][crate::stream::AsChar::is_newline]: Tests if byte is ASCII newline: `[…