Skip to content

Instantly share code, notes, and snippets.

@oteronavarretericardo
oteronavarretericardo / zip3.swift
Created June 3, 2023 22:56 — forked from JRHeaton/zip3.swift
Implementing zip3 in Swift
struct Zip3Generator
<
A: GeneratorType,
B: GeneratorType,
C: GeneratorType
>: GeneratorType {
private var first: A
private var second: B