This crate simply adds a macro that makes the syntax simpler to end control flow.
The macro or_do will allow you to return a function early if a value is None or Err.
use or_do;
let val: i32 = or_do!;
let val: i32 = or_do!;
I may add more QoL macros/functions later.