std::ranges::join_with_view<V,Pattern>::base

来自cppreference.com
 
 
范围库
范围适配器
 
 
constexpr V base() const& requires std::copy_constructible<V>;
(1) (C++23 起)
constexpr V base() &&;
(2) (C++23 起)

返回底层视图的副本。

返回值

2) std::move(base_)

示例