Skip to content

Instantly share code, notes, and snippets.

View polac24's full-sized avatar

Bartosz Polaczyk polac24

  • Apple
  • Cupertino
View GitHub Profile
@chriseidhof
chriseidhof / references.swift
Last active October 14, 2021 10:24
References Blogpost
//: Playground - noun: a place where people can play
import Foundation
final class Disposable {
private let dispose: () -> ()
init(_ dispose: @escaping () -> ()) {
self.dispose = dispose
}