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

履歴 編集

concept
<iterator>

std::incrementable(C++20)

namespace std {
  template<class I>
  concept incrementable =
    regular<I> &&
    weakly_incrementable<I> &&
    requires(I i) {
      { i++ } -> same_as<I>;
    };
}

概要

incrementableは、イテレータ型Iが前置/後置インクリメント演算子(operator++)によってインクリメント可能であり、コピー/ムーブ構築/代入とデフォルト構築、等値比較が可能であることを表すコンセプトである。

要件

このコンセプトによって要求されるインクリメント操作は全て等しさを保持しなければならない。これは、weakly_incrementableの注釈よりも優先される。

モデル

Iのオブジェクトa, bについて次の条件を満たす場合に限って、型Iincrementableのモデルである。

  • bool(a == b)trueならば、bool(a++ == b)
  • bool(a == b)trueならば、bool(((void)a++, a) == ++b)

a == bという要件は++a == ++bが等しいことを意味しており、これらの要件はイテレータにマルチパス保証を要求するものである。すなわち、あるイテレート範囲を複数のイテレータから同時に同じ順序で走査することができることを要求する。incrementableなイテレータはその操作によってイテレータが参照しているシーケンスの状態が変化してはならない。多くの一般的なイテレータがこの要件を満たしている。

#include <iostream>
#include <concepts>
#include <iterator>
#include <memory>
#include <vector>

template<std::incrementable I>
void f(const char* name) {
  std::cout << name << " is incrementable" << std::endl;
}

template<typename I>
void f(const char* name) {
  std::cout << name << " is not incrementable" << std::endl;
}


struct sample_incrementable {
  friend auto operator++(sample_incrementable&) -> sample_incrementable&;
  friend auto operator++(sample_incrementable&, int) -> sample_incrementable; // prvalueを返す必要がある

  friend bool operator==(const sample_incrementable&, const sample_incrementable&) = default;

  using difference_type = int;
};

struct sample_weak_incrementable {
  friend auto operator++(sample_weak_incrementable&) -> sample_weak_incrementable&;
  friend auto operator++(sample_weak_incrementable&, int) -> sample_weak_incrementable&;  

  using difference_type = int;
};


int main() {
  f<int*>("int*");
  f<const int*>("const int*");
  f<std::vector<int>::iterator>("std::vector<int>::iterator");
  f<sample_incrementable>("sample_incrementable");

  std::cout << "\n";
  f<int* const>("int* const");
  f<std::ostream_iterator<double>>("std::ostream_iterator<double>");
  f<sample_weak_incrementable>("sample_weak_incrementable");
}

出力

int* is incrementable
const int* is incrementable
std::vector<int>::iterator is incrementable
sample_incrementable is incrementable

int* const is not incrementable
std::ostream_iterator<double> is not incrementable
sample_weak_incrementable is not incrementable

バージョン

言語

  • C++20

処理系

関連項目

参照