Skip to content

Instantly share code, notes, and snippets.

View wookiee's full-sized avatar
🤗
Biting shoulders

Mikey Ward wookiee

🤗
Biting shoulders
View GitHub Profile
@wookiee
wookiee / zip3.swift
Last active February 5, 2018 19:37 — forked from JRHeaton/zip3.swift
Implementing zip3 in Swift
struct Zip3Iterator
<
A: IteratorProtocol,
B: IteratorProtocol,
C: IteratorProtocol
>: IteratorProtocol {
private var first: A
private var second: B
@wookiee
wookiee / DragTableController.swift
Created August 19, 2017 20:31 — forked from sooop/DragTableController.swift
NSTableView reordering row with drag and drop
//
// ViewController.swift
// DragTable
//
// Created by Anna Kim on 2017. 2. 9..
// Copyright © 2017년 Anna Kim. All rights reserved.
//
import Cocoa