- MacOS Sierra 10.12.5
- MacBook Pro (Retina, 13-inch, Late 2012)
- nRF52-DK (PCA10040)
- Install GCC
| import Foundation | |
| import Actor | |
| import MessageRouter | |
| public final class Core<State, Event, Command> { | |
| public typealias CommandProcessor = (Core<State, Event, Command>, Command) -> Void | |
| public typealias EventHandler = (State, Event) -> CoreUpdate<State, Command> | |
| public let stateChanged = MessageRouter<State>() |
| public extension CustomDebugStringConvertible { | |
| var debugDescription: String { | |
| return debugDescription() | |
| } | |
| func debugDescription(indentationLevel: Int = 0) -> String { | |
| let indentString = (0..<indentationLevel).reduce("") { tabs, _ in tabs + "\t" } | |
| var s = "\(self.dynamicType)" |
| // This code accompanies a blog post: http://chris.eidhof.nl/posts/json-parsing-in-swift.html | |
| // | |
| // As of Beta5, the >>= operator is already defined, so I changed it to >>>= | |
| import Foundation | |
| let parsedJSON : [String:AnyObject] = [ | |
| "stat": "ok", | |
| "blogs": [ |