File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ namespace std {
2424
2525
2626## 効果
27- 型`T`と`U`の間で[`std::swappable_with`](/reference/concepts/swappable_with .md.nolink )要件を満たしており、2つのswap関数が共に例外を投げない場合は[`true_type`](true_type.md)から派生し、そうでなければ[`false_type`](false_type.md)から派生する。
27+ 型`T`と`U`の間で[`std::swappable_with`](/reference/concepts/swappable .md)要件を満たしており、2つのswap関数が共に例外を投げない場合は[`true_type`](true_type.md)から派生し、そうでなければ[`false_type`](false_type.md)から派生する。
2828
2929型`T`と`U`は参照でなければswapできないので`T`と`U`が参照でない場合、結果は`false`となる。
3030
Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ namespace std {
2323
2424
2525## 効果
26- 型`T`と`U`の間で[`std::swappable_with`](/reference/concepts/swappable_with .md.nolink )要件を満たしていれば[`true_type`](true_type.md)から派生し、そうでなければ[`false_type`](false_type.md)から派生する。
26+ 型`T`と`U`の間で[`std::swappable_with`](/reference/concepts/swappable .md)要件を満たしていれば[`true_type`](true_type.md)から派生し、そうでなければ[`false_type`](false_type.md)から派生する。
2727
2828型`T`と`U`は参照でなければswapできないので`T`と`U`が参照でない場合、結果は`false`となる。
2929
30- 簡単に説明すると[`std::swappable_with`](/reference/concepts/swappable_with .md.nolink )要件を満たすとは、2引数を取りその引数の値を入れ替えるswap関数が以下のようなコードで見つかることである。
30+ 簡単に説明すると[`std::swappable_with`](/reference/concepts/swappable .md)要件を満たすとは、2引数を取りその引数の値を入れ替えるswap関数が以下のようなコードで見つかることである。
3131
3232```cpp
3333#include <utility>
You can’t perform that action at this time.
0 commit comments