macro_rules! reverse_operations {
( $($t:ident)* ) => { ... };
}Expand description
Macro to implement reverse operators for foreign types.
Requires only that the type(s) being passed to the macro
implement From
macro_rules! reverse_operations {
( $($t:ident)* ) => { ... };
}Macro to implement reverse operators for foreign types.
Requires only that the type(s) being passed to the macro
implement From