![]()
|
|
Ruby provides robust support for working with numbers. |
|
It can help with your numeric needs whether you make big integer amounts of fiat money or discrete fractional representations of crypto money. It doesn’t judge you. |
|
Arithmetic operations |
|
|
|
|
|
Note: The carat symbol |
|
The BigDecimal class |
|
If you need accurate floating point arithmetic, you
should use the standard library’s |
|
Converting between one type to the other |
|
With |
|
But normally you don’t even have to do that. Ruby will infer the type based on the value. |
|
These are even available on strings! |
|
But be careful. Don’t trust these blindly. |
|
Use |
|
Comparing numbers |
|
All number types are |
|
|
|
It also gives the |
|
Common methods |
|
Besides the above three, there are other methods such as
|
|
And also predicate methods like |
|
Infinity |
|
The constants |
|
They’re also used in endless ranges. |
|
The Classes |
|
|
|
|
|
|
|
|
|
|
|
Let’s explore the object/class hierarchy of numbers a bit: |
|
Before Ruby 2.4, the integers were represented using
these 2 |
|
Method or Operator? |
|
Since the number values are ruby objects, all the functionalities are available as methods on them instead of functions or operators like in most other languages. |
|
The ability to call them without a dot and paranthesis is just a Ruby syntax sugar to make it seem elegant like operators. |
|
Official docs
|
Next topic: Strings .