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
| infix operator --> { associativity left precedence 160 } | |
| /// True if and only if lhs implies rhs. | |
| /// False if lhs is true and rhs false, true otherwise. | |
| func -->(lhs: Bool, rhs: Bool) -> Bool { | |
| return !lhs || rhs | |
| } |
OlderNewer