method
inspect
v2_4_6 -
Show latest stable
-
0 notes -
Class: BigDecimal
- 1_8_6_287
- 1_8_7_72
- 1_8_7_330
- 1_9_1_378 (0)
- 1_9_2_180 (0)
- 1_9_3_125 (0)
- 1_9_3_392 (0)
- 2_1_10 (0)
- 2_2_9 (0)
- 2_4_6 (-3)
- 2_5_5 (-1)
- 2_6_3 (-38)
- What's this?
inspect()
public
Returns debugging information about the value as a string of comma-separated values in angle brackets with a leading #:
BigDecimal.new("1234.5678").inspect #=> "0.12345678e4"
The first part is the address, the second is the value as a string, and the final part ss(mm) is the current number of significant digits and the maximum number of significant digits, respectively.