- ranges[meta header]
- std::ranges[meta namespace]
- class template[meta id-type]
- cpp23[meta cpp]
namespace std::ranges {
template<move_constructible T, semiregular Bound = unreachable_sentinel_t>
requires (is_object_v<T> && same_as<T, remove_cv_t<T>> &&
(is-integer-like<Bound> || same_as<Bound, unreachable_sentinel_t>))
class repeat_view : public view_interface<repeat_view<T, Bound>> { …… }; // (1)
namespace views {
inline constexpr /*unspecified*/ repeat = /*unspecified*/; // (2)
}
}
- move_constructible[link /reference/concepts/move_constructible.md]
- semiregular[link /reference/concepts/semiregular.md]
- unreachable_sentinel_t[link /reference/iterator/unreachable_sentinel_t.md]
- is_object_v[link /reference/type_traits/is_object.md]
- same_as[link /reference/concepts/same_as.md]
- remove_cv_t[link /reference/type_traits/remove_cv.md]
- is-integer-like[link /reference/iterator/is_integer_like.md]
- view_interface[link view_interface.md]
- (1): 指定した値を指定回数繰り返す
view
- (2):
repeat_view
を生成するカスタマイゼーションポイントオブジェクト
回数を省略した場合、無限長となる。
borrowed |
sized |
output |
input |
forward |
bidirectional |
random_access |
contiguous |
common |
viewable |
view |
|
(1) |
|
○ |
○ |
○ |
○ |
|
(1) |
○ |
○ |
- (1)
Bound = unreachable_sentinel_t
ではない場合
- 式
views::repeat(E)
の効果はrepeat_view(E)
と等しい。
- 式
views::repeat(E, F)
の効果はrepeat_view(E, F)
と等しい。
| 名前 | 説明 | 対応バージョン |
|----------------------------------------------|------------------------------ ----|----------------|
| operator bool
| Rangeが空でないかどうかを判定する | C++23 |
| front
| 先頭要素への参照を取得する | C++23 |
| back
| 末尾要素への参照を取得する | C++23 |
| operator[]
| 要素へアクセスする | C++23 |
名前 |
説明 |
対応バージョン |
iterator |
イテレータ型(説明専用) |
C++23 |
#include <ranges>
#include <iostream>
int main() {
using namespace std;
for(int n : views::repeat(42, 3)) {
cout << n << ' ';
}
}
- views::repeat[color ff0000]