Trait nom::InputTake[][src]

pub trait InputTake: Sized {
    fn take(&self, count: usize) -> Self;
fn take_split(&self, count: usize) -> (Self, Self); }
[]

abstracts slicing operations

Required Methods

[]

returns a slice of count bytes. panics if count > length

[]

split the stream at the count byte offset. panics if count > length

Implementations on Foreign Types

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

[]

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

[]

Implementors