auto_unwrap-1.0.2 has been yanked.
auto_unwrap
Have you every written a function and were too lazy to have it return Result<T, E> but still wanted to use the ? operator? I present to you:
use auto_unwrap;
assert_eq!;
Is there someplace you would like to keep the ??
use auto_unwrap;
this is updated from some previous code i wrote: yauc
I made this for one specific use case: Bevy systems. With all the queries you have to do there can be a lot of .unwrap()'s necessary, and that gets annoying.
Probably better practice to use .except() but eh. And I made this mostly to learn how to do procedural macros anyway.