enum WithZip[s: Type, t: Type]
case WithZip(s, t)
A view for Iterable instances s and t that zips s and t together.
Iterable
s
t
instance ForEach[WithZip[s, t]] with Iterable[s], Iterable[t]