diff options
author | BurdetteLamar <[email protected]> | 2024-07-26 15:11:04 +0100 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-07-26 11:22:18 -0400 |
commit | aaa542d894ab36145c02d854b71d77c8dc51c01c (patch) | |
tree | 57c9ec69bc83fb13cddde4867decca4fd97493a8 /numeric.c | |
parent | 78f1b835a095b0ec5c8a51821e822dcf93f6722a (diff) |
Doc for some #ceil and #floor
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11245
Diffstat (limited to 'numeric.c')
-rw-r--r-- | numeric.c | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -2235,10 +2235,6 @@ flo_ndigits(int argc, VALUE *argv) * | -4 | 10000 | -20000 | * | -5 | 100000 | -100000 | * | -6 | 1000000 | -1000000 | - * | -7 | 10000000 | -10000000 | - * | -8 | 100000000 | -100000000 | - * | -9 | 1000000000 | -1000000000 | - * | -10 | 10000000000 | 0 | * * Note that the limited precision of floating-point arithmetic * may lead to surprising results: @@ -2744,13 +2740,16 @@ flo_truncate(int argc, VALUE *argv, VALUE num) /* * call-seq: - * floor(digits = 0) -> integer or float + * floor(ndigits = 0) -> float or integer * - * Returns the largest number that is less than or equal to +self+ with - * a precision of +digits+ decimal digits. + * Returns the largest float or integer that is less than or equal to +self+, + * as specified by the given `ndigits`, + * which must be an + * [integer-convertible object](rdoc-ref:implicit_conversion.rdoc@Integer-Convertible+Objects). * - * \Numeric implements this by converting +self+ to a Float and - * invoking Float#floor. + * Equivalent to <tt>self.to_f.floor(ndigits)</tt>. + * + * Related: #ceil, Float#floor. */ static VALUE |