7 releases

Uses old Rust 2015

0.2.1 Oct 2, 2018
0.2.0 Sep 15, 2016
0.1.5 Sep 15, 2016

#2279 in Rust patterns

Download history 3/week @ 2024-02-16 25/week @ 2024-02-23 17/week @ 2024-03-01 18/week @ 2024-03-08 9/week @ 2024-03-15 3/week @ 2024-03-22 89/week @ 2024-03-29

121 downloads per month
Used in 2 crates (via sp-wasm-memfs)

MIT/Apache

20KB
465 lines

Tool

A grab-bag of useful functions for functional programming.

Example

Non-empty strings

extern crate tool;
use tool::prelude::*;
fn main() {
    let strings: Vec<_> = vec!["my string", "", "asdf", ""]
        .into_iter()
        .filter(non_empty)
        .collect();
    assert_eq!(strings, vec!["my string", "asdf"]);
}

First item in an iterator of tuples.

extern crate tool;
use tool::prelude::*;
fn main() {
    let strings: Vec<_> = vec![("first", 1), ("second", 2), ("third", 3), ("fourth", 4)]
        .into_iter()
        .map(first)
        .collect();

    assert_eq!(strings, vec!["first", "second", "third", "fourth"]);
}

Compile-Time Flags (cargo features)

  • use_std (default: enabled) - Disable this if you're project doesn't depend on libstd.

No runtime deps

Features