Skip to content

Latest commit

 

History

History
39 lines (21 loc) · 555 Bytes

File metadata and controls

39 lines (21 loc) · 555 Bytes

LessEqual

LessEqual(x, y) 

x <= y

yields True if x is known to be less than or equal y.

lhs <= rhs

represents the inequality lhs ≤ rhs.

Examples

>> 3<=4
True

>> {LessEqual(), LessEqual(x), LessEqual(1)}
{True, True, True}

Implementation status

  • ✅ - full supported

Github