命名空间
变体
操作

std::ranges::drop_while_view<V,Pred>::pred

来自 cppreference.com
 
 
范围库
范围适配器
 
 
constexpr const Pred& pred() const;
(自 C++20 起)

返回对存储的谓词的引用。

如果 *this 不存储谓词(例如,对 *this 的赋值抛出异常,这会复制构造或移动构造一个 Pred),则行为未定义。

[编辑] 参数

(无)

[编辑] 返回值

对存储的谓词的引用 pred_.

[编辑] 示例

#include <array>
#include <iomanip>
#include <iostream>
#include <ranges>
 
int main()
{
    constexpr std::array data{0, -1, -2, 3, 1, 4, 1, 5};
 
    auto view = std::ranges::drop_while_view
    {
        data, [](int x) { return x <= 0; }
    };
 
    std::cout << std::boolalpha;
    for (int x : data)
        std::cout << "predicate(" << std::setw(2) << x << ") : "
                  << view.pred()(x) << '\n';
}

输出

predicate( 0) : true
predicate(-1) : true
predicate(-2) : true
predicate( 3) : false
predicate( 1) : false
predicate( 4) : false
predicate( 1) : false
predicate( 5) : false