macro_rules! delegate_indexed_iterator {
    ($iter:ty => $item:ty ,
     impl $( $args:tt )*
     ) => { ... };
}Expand description
Creates an indexed parallel iterator implementation which simply wraps an
inner type and delegates all methods inward.  The actual struct must already
be declared with an inner field.