From f169043d81524b5b529f2c1e9c35437ba5bc3a7a Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 23 Apr 2019 13:14:27 +0900 Subject: Add pipeline operator [Feature #15799] --- NEWS | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'NEWS') 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:: -- cgit v1.2.3