remove "experimental" from numbered parameter.

Numbered parameter is not an experimental feature,
confirmed by Matz.
https://twitter.com/yukihiro_matz/status/1209271452798607361
This commit is contained in:
Koichi Sasada 2019-12-24 10:23:38 +09:00
parent 5e17834fc9
commit 360f153fca

4
NEWS
View File

@ -130,8 +130,8 @@ sufficient information, see the ChangeLog file or Redmine
==== Numbered parameters
* Numbered parameters as default block parameters are introduced
as an experimental feature. [Feature #4475]
* Numbered parameters as default block parameters are introduced.
[Feature #4475]
[1, 2, 10].map { _1.to_s(16) } #=> ["1", "2", "a"]
[[1, 2], [3, 4]].map { _1 + _2 } #=> [3, 7]