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
//
// CodableExtensions.swift
// 7-Eleven
//
// Created by Raja Sekhar Chiderae on 1/14/19.
// Copyright © 2019 self. All rights reserved.
//
import Foundation