Takashi Kokubun
94da5f7c36
Rename builtin attr :inline to :leaf
2023-03-11 14:25:12 -08:00
Takashi Kokubun
3a02c7818c
Change the syntax of Primitive.attr! to Symbol ( #7501 )
2023-03-10 23:40:57 -08:00
BurdetteLamar
3b239d2480
Remove (newly unneeded) remarks about aliases
2023-02-19 14:26:34 -08:00
Takashi Kokubun
344c16eba4
Avoid using a weird syntax for documentation
...
Following up 465bd972ec
.
If the actual implementation still resides in C, it should be
documented in C just like all other places.
2023-01-30 13:18:19 -08:00
Takashi Kokubun
006682d391
Avoid leaving an uneeded comment
...
465bd972ec
didn't need to leave the obsoleted code.
2023-01-30 13:12:34 -08:00
Kouhei Yanagita
20a85ab611
Fix Integer#ceildiv to respect #coerce ( #7118 )
...
Fixes [Bug #19343 ]
2023-01-22 18:53:02 +09:00
S.H
c6f439a6a8
Improve performance some `Integer` and `Float` methods [Feature #19085 ] ( #6638 )
...
* Improve some Integer and Float methods
* Using alias and Remove unnecessary code
* Remove commentout code
2022-10-27 09:13:16 -07:00
Kouhei Yanagita
803a072630
Improve performance of Integer#ceildiv
...
This patch is suggested by nobu.
Benchmark result:
```
require 'benchmark'
n = 10 ** 7
Benchmark.bm do |x|
x.report("Fixnum/Fixnum") { a, b = 5, 2; n.times { a.ceildiv(b) } }
x.report("Bignum/Bignum") { a, b = 10**100, 10**99 - 1; n.times { a.ceildiv(b) } }
x.report("Bignum/Fixnum") { a, b = 10**100, 3; n.times { a.ceildiv(b) } }
end
```
Original:
```
user system total real
Fixnum/Fixnum 3.340009 0.043029 3.383038 ( 3.384022)
Bignum/Bignum 8.229500 0.118543 8.348043 ( 8.349574)
Bignum/Fixnum 8.328971 0.097842 8.426813 ( 8.426952)
```
Improved:
```
user system total real
Fixnum/Fixnum 0.699140 0.000961 0.700101 ( 0.700199)
Bignum/Bignum 5.076165 0.083160 5.159325 ( 5.159360)
Bignum/Fixnum 5.548684 0.115372 5.664056 ( 5.666735)
```
2022-08-12 15:57:52 +09:00
Matheus Richard
b8f7fc361d
Add examples for Integer.try_convert [ci skip]
2021-12-15 02:12:37 +09:00
Matheus Richard
b32b755ea2
Fix typo on Integer.try_convert [ci skip]
2021-12-15 02:05:41 +09:00
Nobuyoshi Nakada
454b4da763
[DOC] Integer.try_convert [ci skip]
2021-12-08 17:59:16 +09:00
Burdette Lamar
f31b7f0522
Enhanced RDoc for Integer ( #5118 )
...
Treats:
#allbits?
#anybits?
#nobits?
#succ
#pred
#chr`
#to_s
#+
#-
2021-11-15 13:52:23 -06:00
S-H-GAMELINKS
bdd6d8746f
Replace RBOOL macro
2021-09-05 23:01:27 +09:00
Nobuyoshi Nakada
465bd972ec
[DOC] Move rdoc of Integer#abs to numeric.rb [ci skip]
2021-08-30 13:33:52 +09:00
S.H
3208a5df2d
Improve perfomance for Integer#size method [Feature #17135 ] ( #3476 )
...
* Improve perfomance for Integer#size method [Feature #17135 ]
* re-run ci
* Let MJIT frame skip work for Integer#size
Co-authored-by: Takashi Kokubun <takashikkbn@gmail.com>
2021-06-04 21:57:21 -07:00
Nobuyoshi Nakada
446d000e11
Strip trailing spaces [ci skip]
2021-03-04 11:40:43 +09:00
S.H
efd19badf4
Improve performance some Numeric methods [Feature #17632 ] ( #4190 )
2021-02-19 11:11:19 -08:00
S.H
fad7908a5d
Improve performance Float#positive? and Float#negative? [Feature #17614 ] ( #4160 )
2021-02-08 20:29:42 -08:00
Takashi Kokubun
9d1475c621
Fix JIT link failures
...
forgotten in https://github.com/ruby/ruby/pull/4018
2021-01-18 14:52:33 -08:00
S.H
daec5f9edc
Improve performance some Float methods [Feature #17498 ] ( #4018 )
2021-01-01 18:39:07 -08:00