DRY Fusion data munging kata in Swift

I worked through one of Dave Thomas’s programming exercises, called a kata, and pushed my Swift 2.2 code to GitHub. The code shows how to apply the Don’t Repeat Yourself (DRY) principle to two similar but different data processing programs.

DRY

The end result of this exercise is a satisfyingly readable higher-order function, which is similar to a template method but does not require subclassing to supply context-specific logic.

Here is the kata:

http://codekata.com/kata/kata04-data-munging/

And here is my implementation of the kata’s third challenge:

https://github.com/ijoshsmith/dry-munging-kata

This was a great learning experience!

This entry was posted in Swift and tagged , . Bookmark the permalink.

1 Response to DRY Fusion data munging kata in Swift

  1. Pingback: Dew Drop – May 31, 2016 (#2262) | Morning Dew

Comments are closed.