Skip to content

Instantly share code, notes, and snippets.

@inacioferrarini
Created June 23, 2017 22:04
Show Gist options
  • Save inacioferrarini/369dfcf00f447810b4e50a84f3e1bb5c to your computer and use it in GitHub Desktop.
Save inacioferrarini/369dfcf00f447810b4e50a84f3e1bb5c to your computer and use it in GitHub Desktop.
import Foundation
public protocol Transformer {
associatedtype T
associatedtype U
func transform(_ input: T) -> U
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment