turbonone (no_std)

Tiny macro for calling functions with Option<T> arguments.

Example

```rust fn my_function(arg: Option) { ... }

myfunction(None); // cannot infer type for type parameter T declared on the associated function my_function myfunction(turbonone!()); // Works! my_function(Some(...)); // Works! ```