Created
July 5, 2014 15:40
-
-
Save jklausa/b48548f1fde3ba4fe2c2 to your computer and use it in GitHub Desktop.
This file contains 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
protocol Comparable : Equatable { | |
func <=(lhs: Self, rhs: Self) -> Bool | |
func >=(lhs: Self, rhs: Self) -> Bool | |
func >(lhs: Self, rhs: Self) -> Bool | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment