Ruby Comparison Operators
Comparison Operators
Comparison operators take simple values (numbers or strings) as arguments and used to check for equality between two values. Ruby provides following comparison operators :
Operator | Name | Example | Result |
---|---|---|---|
== | Equal | x==y | True if x is exactly equal to y. |
!= | Not equal | x!=y | True if x is exactly not equal to y. |
> | Greater than | x>y | True if x is greater than y. |
< | Less than | x<y | True if x is less than y. |
>= | Greater than or equal to | x>=y | True if x is greater than or equal to y. |
<= | Less than or equal to | x<=y | True if x is less than or equal to y. |
<=> | Combined comparison operator. | x<=>y | x <=> y : = if x < y then return -1 if x =y then return 0 if x > y then return 1 if x and y are not comparable then return nil |
=== | Test equality | x===y | (10...20) === 9 return false. |
.eql? | True if two values are equal and of the same type | x.eql? y | 1 == 1.0 #=> true 1.eql? 1.0 #=> false |
equal? | True if two things are same object. | obj1.equal?obj2 | val = 10 => 10 val.equal?(10) => true |
Example: Equality test
Output:
Test two numbers for equality with ==, !=, or <=> false true 0 1 -1
Example: eql? and eqlity? operators
Example: Equal, less than, or greater than each other
Output:
Test if two numbers are equal, less than, or greater than each other true false true true true
Example: Spaceship operator returns -1, 0, or 1
Output:
the <=> (spaceship operator) returns -1, 0, or 1, -1 0 1
Example: Test the value in a range
Output:
test if a value is in a range false true false true true
Previous:
Ruby Arithmetic Operators
Next:
Ruby Assignment Operators
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics