operator< -- tuple/op_less: 戻り値説明のリンク修正(#899)

1 · cpprefjp · Sept. 16, 2021, 5:50 a.m.
diff --git a/reference/tuple/tuple/op_less.md b/reference/tuple/tuple/op_less.md index 2ae082725..51a23ece9 100644 --- a/reference/tuple/tuple/op_less.md +++ b/reference/tuple/tuple/op_less.md @@ -31,13 +31,12 @@ namespace std { ```cpp (bool)(get<0>(t) < get<0>(u)) || (!(bool)(get<0>(u) < get<0>(t)) && t_tail < u_tail) ``` +* get[link get.md] ただし、`r_tail`は、ある`tuple`オブジェクト`r`の最初の要素以外の全ての要素を含む`tuple`オブジェクトを表す。 2つの`tuple`オブジェクトの要素数が0である場合は、`false`を返す。 -* get[link get.md] - ## 例 ```cp...