命名空间
变体
操作

std::ranges::iota_view<W, Bound>::empty

来自 cppreference.cn
< cpp‎ | ranges‎ | iota view
 
 
范围库 (Ranges library)
范围适配器 (Range adaptors)
 
 
constexpr bool empty() const;
(C++20 起)

检查范围是否为空(即起始值是否与哨兵值相同)。

目录

[编辑] 返回值

value_ == bound_

[编辑] 示例

#include <cassert>
#include <ranges>
 
int main()
{
    auto a = std::ranges::iota_view<int, int>();
    assert(a.empty());
 
    auto b = std::ranges::iota_view(4);
    assert(!b.empty());
 
    auto c = std::ranges::iota_view(4, 8);
    assert(!c.empty());
}

[编辑] 缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 发布时的行为 正确的行为
LWG 4001 C++20 继承成员函数 empty 并非始终有效 empty 始终提供

[编辑] 参阅

返回元素数量,仅当底层(适配的)范围满足 sized_range 时提供
(public member function) [编辑]