method_shorthands 0.2.1

A set of convenient shorthands for commonly used methods.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod methods;

// Example:
// use methods::*;

// fn main() {
//     let idx = *[0, 1, 2, 3, 4].iter().find(|x| **x == 1).uw();
//     let idx2 = *[0, 1, 2, 3, 4].iter().find(|x| **x == 5).ex("test");

//     let string = "foo".ts();

//     println!("{idx}, {idx2}, {string}");
// }