hartator (Julien Khaleghy)
- Login: hartator
- Registered on: 03/28/2018
- Last sign in: 01/16/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
06/03/2024
-
10:30 PM Ruby Feature #20205: Enable `frozen_string_literal` by default
- I think making `# frozen_string_literal: true` the default is a bad idea.
If the main point is to make Ruby faster, IRL benchmarks so far have shown the reverse. `byroot`'s own initial benchmarks show regular strings being faster or as ...
09/14/2018
-
09:17 AM Ruby Bug #11174: threads memory leak
- ko1 (Koichi Sasada) wrote:
> Sorry I missed it.
Thanks for the awesome work on MRI.
I still have the same issue on Ruby 2.5.1 (ruby 2.5.1p57 (2018-03-29 revision 63029) [x86_64-linux-gnu]):
~~~ ruby
VmRSS: 60116 kB
VmRSS: ...
03/29/2018
-
03:38 PM Ruby Bug #14641: Shouldn't Array#map not modify its array?
- jeremyevans0 (Jeremy Evans) wrote:
> The array itself is not modified, you are mutating elements of the current array during iteration (as String#<< mutates the receiver), then returning a new array with the mutated elements (since Stri...
03/28/2018
-
09:54 PM Ruby Bug #14641 (Rejected): Shouldn't Array#map not modify its array?
- Hi,
Thanks for the awesome work you guys have been doing on Ruby for all this years.
I might be missing something obvious, but I thought Array#map doesn't modify the array it's called on?
Ie.
~~~ ruby
ruby 2.5.0p0 (2017-12-...