pub fn change_resolution_tuple<I>(
    input_iter: I,
    output_h3_resolution: u8
) -> ChangeResolutionTupleIterator<<I as IntoIterator>::IntoIter>
where I: IntoIterator, I::Item: Borrow<H3Cell>,
Expand description

Returns an iterator to change the resolution of the given cells to the output_h3_resolution. The iterator iterates over tuples of (input_index, output_index), where output_index is the index after the resolution change has been applied.

Also see change_resolution.