Trait nom::InputTakeAtPosition [] [src]

pub trait InputTakeAtPosition: Sized {
    type Item;
    fn split_at_position<P>(&self, predicate: P) -> IResult<Self, Self, u32>
    where
        P: Fn(Self::Item) -> bool
;
fn split_at_position1<P>(
        &self,
        predicate: P,
        e: ErrorKind<u32>
    ) -> IResult<Self, Self, u32>
    where
        P: Fn(Self::Item) -> bool
; }

methods to take as much input as possible until the provided function returns true for the current element

a large part of nom's basic parsers are built using this trait

Associated Types

Required Methods

Implementations on Foreign Types

impl<'a> InputTakeAtPosition for &'a [u8]
[src]

[src]

[src]

impl<'a> InputTakeAtPosition for &'a str
[src]

[src]

[src]

Implementors