def <==>(x: Bool, y: Bool): Bool
Returns true if x implies y and vise versa.
x
y
def ==>(x: Bool, y: Bool): Bool
Returns true if x implies y logically holds.
true
def runIf(f: Unit -> Unit \ ef, cond: Bool): Unit \ ef
Calls f if cond is true.
f
cond