From d94b4f47476bbc901753f68d6dfe317e1c5c732e Mon Sep 17 00:00:00 2001 From: MDN Date: Sat, 29 May 2021 01:14:43 +0000 Subject: [CRON] sync translated content --- files/ja/_redirects.txt | 1 + files/ja/_wikihistory.json | 16 ++-- .../operators/pipeline_operator/index.html | 88 ++++++++++++++++++++++ .../operators/pipeline_operator/index.html | 87 --------------------- 4 files changed, 97 insertions(+), 95 deletions(-) create mode 100644 files/ja/orphaned/web/javascript/reference/operators/pipeline_operator/index.html delete mode 100644 files/ja/web/javascript/reference/operators/pipeline_operator/index.html (limited to 'files/ja') diff --git a/files/ja/_redirects.txt b/files/ja/_redirects.txt index 405f7e6619..c4834b1a87 100644 --- a/files/ja/_redirects.txt +++ b/files/ja/_redirects.txt @@ -4981,6 +4981,7 @@ /ja/docs/Web/JavaScript/Reference/Operators/Comparison_Operators /ja/docs/conflicting/Web/JavaScript/Reference/Operators /ja/docs/Web/JavaScript/Reference/Operators/Logical_Operators /ja/docs/Web/JavaScript/Reference/Operators /ja/docs/Web/JavaScript/Reference/Operators/Member_Operators /ja/docs/Web/JavaScript/Reference/Operators/Property_Accessors +/ja/docs/Web/JavaScript/Reference/Operators/Pipeline_operator /ja/docs/orphaned/Web/JavaScript/Reference/Operators/Pipeline_operator /ja/docs/Web/JavaScript/Reference/Operators/Special /ja/docs/orphaned/Web/JavaScript/Reference/Operators/Special /ja/docs/Web/JavaScript/Reference/Operators/Special/get /ja/docs/Web/JavaScript/Reference/Functions/get /ja/docs/Web/JavaScript/Reference/Operators/Special_Operators /ja/docs/orphaned/Web/JavaScript/Reference/Operators/Special_Operators diff --git a/files/ja/_wikihistory.json b/files/ja/_wikihistory.json index 8871adaacb..ab35d6cc64 100644 --- a/files/ja/_wikihistory.json +++ b/files/ja/_wikihistory.json @@ -45589,14 +45589,6 @@ "hiroto7" ] }, - "Web/JavaScript/Reference/Operators/Pipeline_operator": { - "modified": "2020-10-17T14:59:10.566Z", - "contributors": [ - "mpcjazz", - "mfuji09", - "YuichiNukiyama" - ] - }, "Web/JavaScript/Reference/Operators/Property_Accessors": { "modified": "2020-10-15T21:06:24.472Z", "contributors": [ @@ -53227,6 +53219,14 @@ "shide55" ] }, + "orphaned/Web/JavaScript/Reference/Operators/Pipeline_operator": { + "modified": "2020-10-17T14:59:10.566Z", + "contributors": [ + "mpcjazz", + "mfuji09", + "YuichiNukiyama" + ] + }, "orphaned/Web/JavaScript/Reference/Operators/Special": { "modified": "2019-01-16T13:14:28.710Z", "contributors": [ diff --git a/files/ja/orphaned/web/javascript/reference/operators/pipeline_operator/index.html b/files/ja/orphaned/web/javascript/reference/operators/pipeline_operator/index.html new file mode 100644 index 0000000000..62a25f0673 --- /dev/null +++ b/files/ja/orphaned/web/javascript/reference/operators/pipeline_operator/index.html @@ -0,0 +1,88 @@ +--- +title: パイプライン演算子 (|>) +slug: orphaned/Web/JavaScript/Reference/Operators/Pipeline_operator +tags: + - Chaining + - Experimental + - JavaScript + - Language feature + - Operator + - Pipeline + - パイプライン + - 実験的 + - 演算子 + - 言語機能 + - 連結 +translation_of: Web/JavaScript/Reference/Operators/Pipeline_operator +original_slug: Web/JavaScript/Reference/Operators/Pipeline_operator +--- +
{{jsSidebar("Operators")}}
+ +

実験的なパイプライン演算子 |> (現在はステージ 1 です) は、式の値を関数に接続します。これによって、読みやすい方法で一連の関数呼び出しを作成することができます。結果的に、単一の引数を用いた関数呼び出しの糖衣構文となり、次のように書くことができます。

+ +
let url = "%21" |> decodeURI;
+ +

これと等価な従来の構文は次のようになります。

+ +
let url = decodeURI("%21");
+
+ +

構文

+ +
expression |> function
+
+ +

指定された expression の値が function に、単一の引数として渡されます。

+ +

引数

+ +
+
expression
+
任意の式です。
+
function
+
任意の関数です。
+
+ +

+ +

関数呼び出しの連結

+ +

パイプライン演算子は、複数の関数の連結を読みやすくすることができます。

+ +
const double = (n) => n * 2;
+const increment = (n) => n + 1;
+
+// パイプライン演算子なし
+double(increment(double(double(5)))); // 42
+
+// パイプライン演算子あり
+5 |> double |> double |> increment |> double; // 42
+
+ +

仕様

+ + + + + + + + + + + + +
仕様書
{{SpecName('Pipeline operator', '#sec-intro', 'Pipeline operator')}}
+ +

ブラウザー実装状況

+ + + +

{{Compat("javascript.operators.pipeline")}}

+ +

関連情報

+ + diff --git a/files/ja/web/javascript/reference/operators/pipeline_operator/index.html b/files/ja/web/javascript/reference/operators/pipeline_operator/index.html deleted file mode 100644 index 02cbc7d0ba..0000000000 --- a/files/ja/web/javascript/reference/operators/pipeline_operator/index.html +++ /dev/null @@ -1,87 +0,0 @@ ---- -title: パイプライン演算子 (|>) -slug: Web/JavaScript/Reference/Operators/Pipeline_operator -tags: - - Chaining - - Experimental - - JavaScript - - Language feature - - Operator - - Pipeline - - パイプライン - - 実験的 - - 演算子 - - 言語機能 - - 連結 -translation_of: Web/JavaScript/Reference/Operators/Pipeline_operator ---- -
{{jsSidebar("Operators")}}
- -

実験的なパイプライン演算子 |> (現在はステージ 1 です) は、式の値を関数に接続します。これによって、読みやすい方法で一連の関数呼び出しを作成することができます。結果的に、単一の引数を用いた関数呼び出しの糖衣構文となり、次のように書くことができます。

- -
let url = "%21" |> decodeURI;
- -

これと等価な従来の構文は次のようになります。

- -
let url = decodeURI("%21");
-
- -

構文

- -
expression |> function
-
- -

指定された expression の値が function に、単一の引数として渡されます。

- -

引数

- -
-
expression
-
任意の式です。
-
function
-
任意の関数です。
-
- -

- -

関数呼び出しの連結

- -

パイプライン演算子は、複数の関数の連結を読みやすくすることができます。

- -
const double = (n) => n * 2;
-const increment = (n) => n + 1;
-
-// パイプライン演算子なし
-double(increment(double(double(5)))); // 42
-
-// パイプライン演算子あり
-5 |> double |> double |> increment |> double; // 42
-
- -

仕様

- - - - - - - - - - - - -
仕様書
{{SpecName('Pipeline operator', '#sec-intro', 'Pipeline operator')}}
- -

ブラウザー実装状況

- - - -

{{Compat("javascript.operators.pipeline")}}

- -

関連情報

- - -- cgit v1.2.3-54-g00ecf