Skip to content

Instantly share code, notes, and snippets.

View emiellensink's full-sized avatar

Emiel Lensink emiellensink

View GitHub Profile
@BenziAhamed
BenziAhamed / CIFilterChain.swift
Last active May 27, 2022 15:00
CIFilterChain - Chain together CI filters with a fluent API
//: Playground - noun: a place where people can play
import UIKit
public protocol CIFilterChainable {
var cifilter: CIFilter? { get }
}
extension String : CIFilterChainable {
public var cifilter: CIFilter? {