[][src]Trait alder::StateExt

pub trait StateExt {
    fn peek_nth(&mut self, len: usize) -> Input;
fn nth(&mut self, len: usize) -> Input;
fn next(&mut self) -> Input;
fn peek(&mut self, len: usize) -> Input;
fn chomp(&mut self, len: usize) -> Input;
fn chomp_while(&mut self, f: impl Fn(&str) -> bool) -> Input; }

Required methods

fn peek_nth(&mut self, len: usize) -> Input

fn nth(&mut self, len: usize) -> Input

fn next(&mut self) -> Input

fn peek(&mut self, len: usize) -> Input

fn chomp(&mut self, len: usize) -> Input

fn chomp_while(&mut self, f: impl Fn(&str) -> bool) -> Input

Loading content...

Implementors

impl StateExt for State[src]

Loading content...