3 releases
1.0.0-alpha.3 | Aug 27, 2024 |
---|---|
1.0.0-alpha.2 | Aug 26, 2024 |
#7 in #toolset
9KB
166 lines
Lubricant
Powerful rust toolset
Quick Start
# (optional) cargo new
cargo install lubricant
// src/main.rs
use lubricant
fn main(){
let new_vec = lubricant::array::map(vec![1,2,3], |item|{item*2});
assert_eq!(new_vec[0], 2);
assert_eq!(new_vec[1], 4);
assert_eq!(new_vec[2], 6);
}
Contribution
Welcome PR, but before submit pull request, Please read Contributing Guidelines
LICENSE
MIT