Skip to content

Instantly share code, notes, and snippets.

@jklausa
Created July 5, 2014 15:40
Show Gist options
  • Save jklausa/b48548f1fde3ba4fe2c2 to your computer and use it in GitHub Desktop.
Save jklausa/b48548f1fde3ba4fe2c2 to your computer and use it in GitHub Desktop.
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