constexpr V base() const & requires copy_constructible<V>; // (1)
constexpr V base() &&; // (2)
概要
メンバ変数として保持している、元のview
を取得する。
効果
入力view
(V
)のオブジェクトをbase_
というメンバに保持するとして
- (1) :
return base_;
と等しい - (2) :
return std::move(base_);
と等しい
例
#include <ranges>
#include <vector>
#include <iostream>
int main() {
using std::ranges::view;
std::vector<int> vec = {1, 2, 3, 4, 5};
std::ranges::filter_view fv{vec, [](int i) { return i % 2 == 0; }};
// (1) コピーして取得
view auto b1 = fv.base();
// (2) ムーブして取得
view auto b2 = std::move(fv).base();
// 得られるのは元のRangeではなく、あくまでview
static_assert(not std::same_as<decltype(b1), std::vector<int>>);
static_assert( std::same_as<decltype(b1), std::ranges::ref_view<std::vector<int>>>);
static_assert( std::same_as<decltype(b2), std::ranges::ref_view<std::vector<int>>>);
}
出力
バージョン
言語
- C++20
処理系
- Clang: 13.0.0 ✅
- GCC: 10.1.0 ✅
- ICC: ?
- Visual C++: 2019 Update 10 ✅