method
inspect
v2_4_6 -
Show latest stable
- Class:
BigDecimal
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.