qol 2.0.0

Quality Of Life functions and macros
Documentation
1
2
3
4
5
6
7
8
9
use qol::S;

fn main() {
    assert_eq!(S!(), String::new());
    i_need_string(S!("foo"));
    // i_need_string("bar"); // expected String, found `&str`
}

fn i_need_string(_: String) {}