2个版本
使用旧Rust 2015
0.1.1 | 2016年8月22日 |
---|---|
0.1.0 | 2016年8月19日 |
在#haiku中排名10
每月下载量146
在3个crate(2个直接)中使用
7KB
80 行
wordsworth
一组有用的自然语言功能。
完整文档可以在这里找到。
用法
此crate位于crates.io,可以通过将wordsworth
添加到项目Cargo.toml
中的依赖项来使用。
[dependencies]
wordsworth = "0.1.*"
并在crate根目录下添加以下内容
extern crate wordsworth;
示例
use wordsworth;
assert_eq!(3, syllable_counter("lucozade"));
assert_eq!(false, is_haiku("this is not\nnot\n a haiku"));
lib.rs
:
一组有用的自然语言功能。
用法
此crate位于crates.io,可以通过将wordsworth
添加到项目Cargo.toml
中的依赖项来使用。
[dependencies]
wordsworth = "0.1.*"
并在crate根目录下添加以下内容
extern crate wordsworth;
示例
use wordsworth;
assert_eq!(3, wordsworth::syllable_counter("lucozade"));
assert_eq!(false, wordsworth::is_haiku("this is not\nnot\n a haiku"));