[][src]Trait conllu::token::Tokens

pub trait Tokens {
    fn tokens(&self) -> TokenIter;
fn tokens_mut(&mut self) -> TokenIterMut; }

Get tokens of a sentence.

Required methods

fn tokens(&self) -> TokenIter

Get an iterator over the tokens in a sentence.

fn tokens_mut(&mut self) -> TokenIterMut

Get the tokens in a sentence mutably.

Loading content...

Implementors

impl Tokens for Sentence[src]

Loading content...