Skip to content

Instantly share code, notes, and snippets.

@macbaszii
Created August 24, 2015 05:49
Show Gist options
  • Select an option

  • Save macbaszii/4489e8a4c2e7062eebfe to your computer and use it in GitHub Desktop.

Select an option

Save macbaszii/4489e8a4c2e7062eebfe to your computer and use it in GitHub Desktop.
infix operator <^> { associativity left }
func <^><T, U>(f: T -> U, a: T?) -> U? {
return a.map(f)
}
getPostTitle <^> findPost(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment