lubricant

Crates.iolubricant
lib.rslubricant
version1.0.0-alpha.3
sourcesrc
created_at2024-08-26 07:55:35.945171
updated_at2024-08-27 06:39:08.635516
descriptionRust toolset
homepagehttps://github.com/GaoNeng-wWw/lubricant.git
repository
max_upload_size
id1351926
size22,069
GaoNeng (GaoNeng-wWw)

documentation

https://docs.rs/lubricant

README

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

Commit count: 0

cargo fmt