From 43dff70eda61a9211a9d850b6c030a333213d37e Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Thu, 19 Nov 2015 14:29:17 -0500 Subject: [PATCH] Add my `ngrams` crate to "Text Processing" I put this under Text Processing because, even though the library can be used with arbitrary iterators, n-grams are most often used with sequences of text --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a5215f4..3426576 100644 --- a/README.md +++ b/README.md @@ -416,6 +416,7 @@ See also [http://areweideyet.com/](http://areweideyet.com/) and [Rust and IDEs]( * [BurntSushi/suffix](https://github.com/BurntSushi/suffix) — Linear time suffix array construction (with Unicode support) [](https://travis-ci.org/BurntSushi/suffix) * [BurntSushi/tabwriter](https://github.com/BurntSushi/suffix) — Elastic tab stops (i.e., text column alignment) [](https://travis-ci.org/BurntSushi/tabwriter) * [rust-lang-nursery/regex](https://github.com/rust-lang-nursery/regex) — Regular expressions (RE2 style) [](https://travis-ci.org/rust-lang-nursery/regex) +* [pwoolcoc/ngrams](https://github.com/pwoolcoc/ngrams) — Construct n-grams from arbitrary iterators [](https://travis-ci.org/pwoolcoc/ngrams) ### Web programming