commit | 7a89518f5b3d41ba4569c499865b5dd260876b23 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <[email protected]> | Mon Jul 15 23:44:46 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Mon Jul 15 23:44:46 2024 +0000 |
tree | 311451f88d79244f36a7f42b5bd8909af18296b7 | |
parent | ec0ba16ba4a68e2f328068685c1a504c88fc43f5 [diff] | |
parent | 6f4c4826f370b9ebf1721f48e8bf57cdcef98246 [diff] |
Merge "Remove rust test targets that cannot be run on Android." into main am: 6f4c4826f3 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rust-stemmers/+/3168620 Change-Id: I59a1ef357d4e93e180c04c59ea36bda8fa7234d0 Signed-off-by: Automerger Merge Worker <[email protected]>
This crate implements some stemmer algorithms found in the snowball project which are compiled to rust using the rust-backend of the snowball compiler.
extern crate rust_stemmers; use rust_stemmers::{Algorithm, Stemmer}; // Create a stemmer for the english language let en_stemmer = Stemmer::create(Algorithm::English); // Stemm the word "fruitlessly" // Please be aware that all algorithms expect their input to only contain lowercase characters. assert_eq!(en_stemmer.stem("fruitlessly"), "fruitless");