Function range_zip::generate_struct
source · pub(crate) fn generate_struct(params: &Params) -> String
Expand description
Output:
ⓘ
pub struct RangeZip2x2<Idx, IR0, R0, IR1, R1, IO0, O0, IO1, O1>
where
Idx: std::cmp::Ord,
IR0: Iterator<Item = (Idx, R0)>,
IR1: Iterator<Item = (Idx, R1)>,
IO0: Iterator<Item = (Idx, O0)>,
IO1: Iterator<Item = (Idx, O1)>,
{
r0: IR0,
r1: IR1,
o0: Peekable<IO0>,
o1: Peekable<IO1>,
o0_data_latest: Option<O0>,
o1_data_latest: Option<O1>,
}