最終更新日時(UTC):
が更新

履歴 編集

function
<ranges>

std::ranges::subrange::empty(C++20)

constexpr bool empty() const;

概要

subrangeが空かどうかを判定する。

効果

return begin_ == end_;

ただし、begin_end_subrangeが内部で保持するイテレータと番兵。

#include <ranges>
#include <iostream>

int main()
{
  constexpr int a[] = {1, 2, 3};
  const std::ranges::subrange sub1(a);
  const std::ranges::subrange sub2(a, a);

  std::cout << sub1.empty() << '\n';
  std::cout << sub2.empty() << '\n';
}

出力

0
1

バージョン

言語

  • C++20

処理系

参照