$ grep -l "#feature" ~/terhechte/journal/*.md
Posts tagged #feature
posts 4 years 2 tag feature
[ 2015 ]
02 · posts
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 ]
02 · posts
2014-06-13
Swift optionals made simple
With Swift, Apple introduced several new programming languages features to iOS and Mac developers. One of them are Optionals. This is a simple introduction into Optionals that glosses over details to make it more approachable.
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