Trait tfidf::Document[][src]

pub trait Document {
    type Term;
}
Expand description

A body of terms.

Associated Types

type Term[src]

Expand description

The type of term that the document consists of.

Implementations on Foreign Types

impl<T> Document for Vec<(T, usize)>[src]

type Term = T

impl<T> Document for HashMap<T, usize>[src]

type Term = T

impl<T> Document for BTreeMap<T, usize>[src]

type Term = T

Implementors