Swift Spaceship Operator
June 19, 2014 • MIT License
Contains a Swift file to add the spaceship operator ( `<=>` ) to a project
6.0 <=> 17.0 // Outputs -1
9001.0 <=> 9000.0 // Outputs 1
4.0 <=> 4.0 // Outputs 0
Works on iOS an...