Tiny macro for calling functions with Option<T>
arguments.
```rust
fn my_function
myfunction(None); // cannot infer type for type parameter T
declared on the associated function my_function
myfunction(turbonone!()); // Works!
my_function(Some(...)); // Works!
```