Skip to content

Commit 2c26002

Browse files
committed
empty_view : 継承しているメンバ関数として不足していたものを追加 #713
1 parent 2a23e4d commit 2c26002

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

reference/ranges/empty_view.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,14 @@ namespace std::ranges {
4545
4646
## 継承しているメンバ関数
4747
48-
| 名前 | 説明 | 対応バージョン |
49-
|----------------------------------------------|----------------------------------|----------------|
48+
| 名前 | 説明 | 対応バージョン |
49+
|----------------------------------------------|-----------------------------------|----------------|
5050
| [`operator bool`](view_interface/op_bool.md) | Rangeが空でないかどうかを判定する | C++20 |
51-
| [`front`](view_interface/front.md) | 先頭要素への参照を取得する | C++20 |
52-
| [`back`](view_interface/back.md) | 末尾要素への参照を取得する | C++20 |
53-
| [`operator[]`](view_interface/op_at.md) | 要素へアクセスする | C++20 |
51+
| [`front`](view_interface/front.md) | 先頭要素への参照を取得する | C++20 |
52+
| [`back`](view_interface/back.md) | 末尾要素への参照を取得する | C++20 |
53+
| [`operator[]`](view_interface/op_at.md) | 要素へアクセスする | C++20 |
54+
| [`cbegin`](view_interface/cbegin.md) | 定数イテレータを取得する | C++23 |
55+
| [`cend`](view_interface/cend.md) | 定数イテレータ(番兵)を取得する | C++23 |
5456
5557
## カスタマイゼーション
5658

0 commit comments

Comments
 (0)