template<random_access_range R = D>
constexpr decltype(auto) operator[](range_difference_t<R> n) // (1)
template<random_access_range R = const D>
constexpr decltype(auto) operator[](range_difference_t<R> n) const // (2)
概要
Rangeの要素にアクセスする。
テンプレートパラメータ制約
R
がrandom_access_range
であること。
戻り値
(1)、(2)共に、以下と等価:
ranges::begin(derived())[n];
計算量
償却定数時間
バージョン
言語
- C++20
処理系
- Clang: 13.0.0 ✅
- GCC: 10.1.0 ✅
- ICC: ?
- Visual C++: 2019 Update 10 ✅