shortcuts 0.1.0

A crate with shortcuts for popular methods of popular types that allow you to write your blazingly fast code blazingly fast
Documentation

Shortcuts for popular methods of popular types that allow you to write your blazingly fast code blazingly fast.

use shortcuts::prelude::*;

let v = Some("blazingly fast");

v.unwrap(); // too long to type
v.un();     // perfection

See the documentation.