Skip to content

Instantly share code, notes, and snippets.

@eyelash
Created January 18, 2016 20:59
Show Gist options
  • Select an option

  • Save eyelash/97c6ae9f576aa077313d to your computer and use it in GitHub Desktop.

Select an option

Save eyelash/97c6ae9f576aa077313d to your computer and use it in GitHub Desktop.
protocol Creatable {
init()
}
func create<T: Creatable>(f: (T) -> Void) -> T {
let t = T()
f(t)
return t
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment