Created
September 16, 2016 18:46
-
-
Save nickffox/bd1cbf9b6185505e14fb7360f6dc3ade to your computer and use it in GitHub Desktop.
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
protocol Incomparable: Comparable {} | |
func ==<T: Incomparable>(lhs: T, rhs: T) -> Bool { | |
fatalError() | |
} | |
func !=<T: Incomparable>(lhs: T, rhs: T) -> Bool { | |
fatalError() | |
} | |
func ><T: Incomparable>(lhs: T, rhs: T) -> Bool { | |
fatalError() | |
} | |
func >=<T: Incomparable>(lhs: T, rhs: T) -> Bool { | |
fatalError() | |
} | |
func <<T: Incomparable>(lhs: T, rhs: T) -> Bool { | |
fatalError() | |
} | |
func <=<T: Incomparable>(lhs: T, rhs: T) -> Bool { | |
fatalError() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment