We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e732478 commit 992b8faCopy full SHA for 992b8fa
CHANGELOG.md
@@ -23,6 +23,10 @@ Performance:
23
avoiding extra allocations.
24
* `rb_str_new()`/`rb_str_new_cstr()` are much faster by avoiding extra copying and
25
allocations.
26
+* `String#{sub,sub!}` are faster in the common case of an empty replacement string.
27
+* Eliminated many unnecessary memory copy operations when reading from `IO` with
28
+ a delimiter (e.g., `IO#each`), leading to overall improved `IO` reading for common
29
+ use cases such as iterating through lines in a `File`.
30
31
# 1.0 RC 2, May 2018
32
0 commit comments