bool_ext icon indicating copy to clipboard operation
bool_ext copied to clipboard

Results 1 bool_ext issues
Sort by recently updated
recently updated
newest added

This could improve readability as it is now clear which closure corresponds to which value. A possible example would be: ``` Rust assert_eq!(true.map_true(|| 42).map_false(|| 21), 42); assert_eq!(false.map_true(|| 42).map_false(|| 21), 21);...