2个稳定版本
使用旧Rust 2015
1.1.0 | 2016年8月6日 |
---|---|
1.0.0 | 2016年8月6日 |
在#luhn中排名6
每月下载65次
3KB
Luhn (Mod 10)
在Rust中快速简单地就地实现luhn校验算法。其他语言的实现可以在github.com/luhnmod10找到。
使用方法
将crate添加到您的Cargo.toml
[dependencies]
luhnmod10 = "1.0.0"
然后
extern crate luhnmod10;
luhnmod10::valid(number);
贡献
欢迎贡献!如果您能在不增加其复杂性的情况下提高此实现的执行时间,请发起一个pull request。要测试您的更改,请在存储库中运行make
以运行测试和基准测试。