$ grep -l "#language" ~/terhechte/journal/*.md
Posts tagged #language
posts 4 years 2 tag language
[ 2015 ]
03 · posts
2015-08-25
Optional throw via try? in Swift 2
Swift 2.0 includes a new way of handling exceptions via the try? keyword. This is a quick post to explain the basics, and why this is cool.
2015-06-19
Using try / catch in Swift with asynchronous closures
Swift's `try` / `catch` error handling is great. However, you can't use it in an async context. This article briefly explains which options you have if you intend to use Error Handling asynchronously
2015-06-17
Generic method overloading by protocol in Swift
See how you can even overload methods in a generic manner by using protocols
[ 2014 ]
01 · posts
2014-06-08
Using @autoclosure to write a Swift syntax extension
Swift's @autoclosure allows to extend the Swift syntax in fantastic ways. Observe how we re-implement the `cond` function from Lisp