stop-words 0.1.2

Common stop words in several languages
Documentation

Build Status

About

This crate contains common stop words for a variety of languages. All stop word lists are from this resource

Example Usage

Using this crate is fairly straight-forward:

use stop_words;

fn main() {
    let words = stop_words::get("english");
    for word in words {
        println!("{}", word)
    }
}