Skip to main content

Comparison

7
  • <

    Returns non-nil if nums are in monotonically increasing order, otherwise false.

  • <=

    Returns non-nil if nums are in monotonically non-decreasing order, otherwise false.

  • =

    Equality. Returns true if x equals y, false if not. Same as Java x.equals(y) except it also works for nil, and compare...

  • >

    Returns non-nil if nums are in monotonically decreasing order, otherwise false.

  • >=

    Returns non-nil if nums are in monotonically non-increasing order, otherwise false.

  • compare

    Comparator. Returns a negative number, zero, or a positive number when x is logically 'less than', 'equal to', or 'gre...

  • not=

    Same as (not (= obj1 obj2))