summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-04-23 13:14:27 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-13 18:44:32 +0900
commitf169043d81524b5b529f2c1e9c35437ba5bc3a7a (patch)
treecaa8e094163afc9d2d177cc0d151a8b906704aee /NEWS
parente717d6faa8463c70407e6aaf116c6b6181f30be6 (diff)
Add pipeline operator [Feature #15799]
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS12
1 files changed, 12 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 4ad38c9f12..a332cf389a 100644
--- a/NEWS
+++ b/NEWS
@@ -48,6 +48,18 @@ sufficient information, see the ChangeLog file or Redmine
" # This has been warned since 2.4
EOS
+* Pipeline operator is added.
+
+ This code equals to the next code.
+
+ foo()
+ |> bar 1, 2
+ |> display
+
+ foo()
+ .bar(1, 2)
+ .display
+
=== Core classes updates (outstanding ones only)
Enumerable::