This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copy and Paste into a Swift playground | |
import Foundation | |
import XCPlayground | |
XCPlaygroundPage.currentPage.needsIndefiniteExecution = true | |
typealias MappingDataSource = [String : AnyObject] | |
// Mappable | |
protocol Mappable { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SemanticVersionNumber.swift | |
// | |
// Created by Jon Cotton on 31/08/2015. | |
// | |
import Foundation | |
public struct SemanticVersionNumber { | |
let major: Int |
NewerOlder