macro_rules! for_collection {
($collection_type:expr, $fn:ident $(, $arg:expr)*) => { ... };
}
Expand description
Macro to help call function $fn
with the correct generic parameter that matches
$collection_type
.
macro_rules! for_collection {
($collection_type:expr, $fn:ident $(, $arg:expr)*) => { ... };
}
Macro to help call function $fn
with the correct generic parameter that matches
$collection_type
.