summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-04-29 10:11:44 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-04-29 10:11:44 +0900
commit6033423d6882546e132a450ab9efc66507879594 (patch)
treea01efbf64253bf4c1e2b87523af010951b461666 /NEWS
parentdaa0874056f602cbc99cab5ddfe3e590194f9bca (diff)
NEWS: Moved "Integer#[] with range" to "Core classes updates"
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS18
1 files changed, 11 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 9376af088e..c92edb4b30 100644
--- a/NEWS
+++ b/NEWS
@@ -42,13 +42,6 @@ sufficient information, see the ChangeLog file or Redmine
* Setting <code>$,</code> to non-nil value is warned now. Use of it in
Array#join is warned too.
-* <code>Integer#[]</code> now supports range operation. [Feature #8842]
-
- 0b01001101[2, 4] #=> 0b0011
- 0b01001100[2..5] #=> 0b0011
- 0b01001100[2...6] #=> 0b0011
- ^^^^
-
=== Core classes updates (outstanding ones only)
Enumerable::
@@ -65,6 +58,17 @@ Enumerator::
can be directly passed to another method as a block
argument. [Feature #15618]
+Integer::
+
+ Modified method::
+
+ * Integer#[] now supports range operation. [Feature #8842]
+
+ 0b01001101[2, 4] #=> 0b0011
+ 0b01001100[2..5] #=> 0b0011
+ 0b01001100[2...6] #=> 0b0011
+ ^^^^
+
Regexp/String::
* Update Unicode version and Emoji version from 11.0.0 to