powered by
Logical biconditional: x <=> y. Returns 1 if and only if x and y have the same value. Equivalent to Not(Xor(x, y)).
Not(Xor(x, y))
iff(x, y)
A Not expression wrapping Xor.
Boolean Variables or logic expressions.
implies(), Not(), And(), Or(), Xor()
implies()
Not()
And()
Or()
Xor()
if (FALSE) { x <- Variable(boolean = TRUE) y <- Variable(boolean = TRUE) expr <- iff(x, y) }
Run the code above in your browser using DataLab