3 个版本
0.1.2 | 2022年1月6日 |
---|---|
0.1.1 | 2021年11月21日 |
0.1.0 | 2021年11月21日 |
在 算法 中排名第 2427
每月下载量 576
2KB
用法
将其添加到您的 Cargo.toml 文件中
[dependencies]
vec_rand = "0.1.0"
let len = 10;
// Pass the type you want to generate to Generics.
// RandVec::generate<i32>(len);
let v = RandVec::generate<u8>(len);
println!(":?", v);
// [107, 58, 138, 135, 112, 216, 235, 226, 68, 104]
依赖项
~305KB