std::ranges::join_with_view<V,Pattern>::base
来自cppreference.com
< cpp | ranges | join with view
constexpr V base() const& requires std::copy_constructible<V>; |
(1) | (C++23 起) |
constexpr V base() &&; |
(2) | (C++23 起) |
返回底层视图的副本。
返回值
1)
base_
2) std::move(
base_
)示例
本节未完成 原因:暂无示例 |