Lines Matching defs:str
22 //! fn from_hex(input: &str) -> Result<u8, std::num::ParseIntError> {
30 //! fn hex_primary(input: &str) -> IResult<&str, u8> {
37 //! fn hex_color(input: &str) -> IResult<&str, Color> {
97 //! fn parens(input: &str) -> IResult<&str, &str> {
131 //! fn take4(input: &str) -> IResult<&str, &str> {
187 //! fn abcd_parser(i: &str) -> IResult<&str, &str> {
233 //! use std::str;
235 //! fn multi(i: &str) -> IResult<&str, Vec<&str>> {
352 //! fn alpha0_streaming(i: &str) -> IResult<&str, &str> {
356 //! fn alpha0_complete(i: &str) -> IResult<&str, &str> {
408 pub use core::{cmp, convert, fmt, iter, mem, ops, option, result, slice, str};
424 slice, str, string, vec,
439 pub use self::str::*;
458 mod str;