$ grep -l "#result" ~/terhechte/journal/*.md
Posts tagged #result
posts 2 years 1 tag result
[ 2015 ]
02 · 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