| pub fn alpha<I, O>() -> impl Parser<I, Output = O>
|
| where
|
| I: Input,
|
| I::Item: Character,
|
| {
|
| take_while(|i: &I::Item| i.is_alphabetic())
|
| }
|
| pub fn alpha<I, O>() -> impl Parser<I, Output = O>
|
| where
|
| I: Input,
|
| I::Item: Character,
|
| {
|
| take_while(|i: &I::Item| i.is_alphabetic())
|
| }
|