#mod #algorithm #in-place #luhn #10 #valid #numbers

luhnmod10

快速简单的就地实现luhn (mod 10)算法

2个稳定版本

使用旧Rust 2015

1.1.0 2016年8月6日
1.0.0 2016年8月6日

#luhn中排名6

Download history 9/week @ 2024-02-19 29/week @ 2024-02-26 9/week @ 2024-03-04 9/week @ 2024-03-11 8/week @ 2024-03-18 6/week @ 2024-03-25 52/week @ 2024-04-01 7/week @ 2024-04-15

每月下载65

MIT许可

3KB

Luhn (Mod 10)

Build Status

在Rust中快速简单地就地实现luhn校验算法。其他语言的实现可以在github.com/luhnmod10找到。

使用方法

将crate添加到您的Cargo.toml

[dependencies]
luhnmod10 = "1.0.0"

然后

extern crate luhnmod10;
luhnmod10::valid(number);

贡献

欢迎贡献!如果您能在不增加其复杂性的情况下提高此实现的执行时间,请发起一个pull request。要测试您的更改,请在存储库中运行make以运行测试和基准测试。

无运行时依赖