From c923162bec267180249c8f0a210d779e0dc786b0 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 8 Oct 2024 22:13:38 +0900 Subject: [PATCH] =?UTF-8?q?2024/07/19=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=9F=BA=E3=81=A5=E3=81=8D?= =?UTF-8?q?=E6=96=B0=E8=A6=8F=E7=BF=BB=E8=A8=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../set/symmetricdifference/index.md | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 files/ja/web/javascript/reference/global_objects/set/symmetricdifference/index.md diff --git a/files/ja/web/javascript/reference/global_objects/set/symmetricdifference/index.md b/files/ja/web/javascript/reference/global_objects/set/symmetricdifference/index.md new file mode 100644 index 00000000000000..3697b8933b5acd --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/set/symmetricdifference/index.md @@ -0,0 +1,73 @@ +--- +title: Set.prototype.symmetricDifference() +slug: Web/JavaScript/Reference/Global_Objects/Set/symmetricDifference +l10n: + sourceCommit: 761b9047d78876cbd153be811efb1aa77b419877 +--- + +{{JSRef}} + +**`symmetricDifference()`** は {{jsxref("Set")}} インスタンスのメソッドで、集合を受け取り、この Set と与えられた集合のどちらかにあるが、両方にはない要素の入った新しい Set を返します。 + +## 構文 + +```js-nolint +symmetricDifference(other) +``` + +### 引数 + +- `other` + - : {{jsxref("Set")}} オブジェクト、または [Set 風](/ja/docs/Web/JavaScript/Reference/Global_Objects/Set#set_風オブジェクト)オブジェクトです。 + +### 返値 + +新しい {{jsxref("Set")}} オブジェクトで、この Set と `other` の集合のどちらかにあるものの、両方にはない要素が入ったものです。 + +## 解説 + +数学的な記法では、対称差分 (_symmetric difference_) は次のように定義されます。 + + + + AB=(AB)(BA)A\ominus B = (A\setminus B)\cup(B\setminus A) + + + +ベン図を使うとこうなります。 + +![2 つの円が重なっているベン図。A と B の対称差は、どちらかの円に含まれるが、両方の円に含まれない領域です。](diagram.svg) + +`symmetricDifference()` は、[Set 風](/ja/docs/Web/JavaScript/Reference/Global_Objects/Set#set-like_objects)オブジェクトを `other` 引数として受け入れます。{{jsxref("Operators/this", "this")}} は、ユーザーコードを呼び出すことなく、`this` オブジェクトに格納されているデータに直接アクセスするため、実際の {{jsxref("Set")}} インスタンスであることが要求されます。次に、`other` の `keys()` メソッドを呼び出して繰り返し処理を行い、`this` に存在し、`other` に存在しないすべての要素と、`other` に存在し、`this` に存在しないすべての要素をすべて含む新しい Set を構築します。 + +返される Set 内の要素の順序は、まず `this` の要素、次に `other` の要素となります。 + +## 例 + +### symmetricDifference() の使用 + +次の例では、偶数(10 未満)と完全平方(10 未満)の集合の対称差分を計算します。結果は、完全平方または偶数のどちらかで、両方にはない数の集合となります。 + +```js +const evens = new Set([2, 4, 6, 8]); +const squares = new Set([1, 4, 9]); +console.log(evens.symmetricDifference(squares)); // Set(5) { 2, 6, 8, 1, 9 } +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [`Set.prototype.symmetricDifference` のポリフィル (`core-js`)](https://github.com/zloirock/core-js#new-set-methods) +- {{jsxref("Set.prototype.difference()")}} +- {{jsxref("Set.prototype.intersection()")}} +- {{jsxref("Set.prototype.isDisjointFrom()")}} +- {{jsxref("Set.prototype.isSubsetOf()")}} +- {{jsxref("Set.prototype.isSupersetOf()")}} +- {{jsxref("Set.prototype.union()")}}