NEWS: Moved "Integer#[] with range" to "Core classes updates"

This commit is contained in:
Nobuyoshi Nakada 2019-04-29 10:11:44 +09:00
Родитель daa0874056
Коммит 6033423d68
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 11 добавлений и 7 удалений

18
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