This crate provides the Maybe trait which is implemented for
both T and Option<T>. The purpose is so that you can write functions
like this:
This way you never need to write foo(Some(x)).
This crate provides the Maybe trait which is implemented for
both T and Option<T>. The purpose is so that you can write functions
like this:
This way you never need to write foo(Some(x)).