truncate(n)
Instance Public methods
Truncate to the nearest 1, returning the result as a BigDecimal.
1 2 | BigDecimal( '3.14159' ).truncate #=> 3 BigDecimal( '8.7' ).truncate #=> 8 |
If n is specified and positive, the fractional part of the result has no more than that many digits.
If n is specified and negative, at least that many digits to the left of the decimal point will be 0 in the result.
1 2 | BigDecimal( '3.14159' ).truncate( 3 ) #=> 3.141 BigDecimal( '13345.234' ).truncate(- 2 ) #=> 13300.0 |
Please login to continue.