Skip to content

Latest commit

 

History

History
42 lines (24 loc) · 936 Bytes

File metadata and controls

42 lines (24 loc) · 936 Bytes

Implies

Implies(arg1, arg2)

Logical implication.

Implies(A, B) is equivalent to !A || B. Implies(expr1, expr2) evaluates each argument in turn, returning True as soon as the first argument evaluates to False. If the first argument evaluates to True, Implies returns the second argument.

See

Examples

>> Implies(False, a)
True
>> Implies(True, a)
a

If an expression does not evaluate to True or False, Implies returns a result in symbolic form:

>> Implies(a, Implies(b, Implies(True, c)))
Implies(a,Implies(b,c))

Implementation status

  • ✅ - full supported

Github