命名空间
变体
操作

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

来自 cppreference.com
< cpp‎ | ranges‎ | split view
 
 
范围库
范围适配器
 
 
constexpr V base() const& requires std::copy_constructible<V>;
(1) (自 C++20 起)
constexpr V base() &&;
(2) (自 C++20 起)

返回底层视图 base_ 的副本。

1) 从底层视图复制构造结果。
2) 从底层视图移动构造结果。

内容

[edit] 参数

(无)

[edit] 返回值

1) 底层视图的副本。
2) 从底层视图移动构造的视图。

[edit] 示例

#include <iomanip>
#include <iostream>
#include <ranges>
#include <string_view>
 
int main()
{
    constexpr std::string_view keywords{"this throw true try typedef typeid"};
    std::ranges::split_view split_view{keywords, ' '};
    std::cout << "base() = " << std::quoted(split_view.base()) << "\n"
                 "substrings: ";
    for (auto split : split_view)
        std::cout << std::quoted(std::string_view{split}) << ' ';
    std::cout << '\n';
}

输出

base() = "this throw true try typedef typeid"
substrings: "this" "throw" "true" "try" "typedef" "typeid"

[edit] 缺陷报告

以下行为变更缺陷报告被追溯应用于先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 3590 C++20 const& 重载还要求复制赋值的有效性 约束放宽

[edit] 另请参阅

返回底层(适配)视图的副本
(std::ranges::lazy_split_view<V,Pattern> 的公有成员函数) [edit]