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

履歴 編集

function
<iterator>

std::make_const_iterator(C++23)

namespace std {
  template<input_iterator I>
  constexpr const_iterator<I> make_const_iterator(I it);
}

概要

basic_const_iteratorのヘルパ関数。

戻り値

return it;

戻り値型は必ずしもbasic_const_iteratorの特殊化になるわけではない。

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

int main() {
  std::vector vec = {1, 2, 3, 4, 5};

  auto cit = std::make_const_iterator(vec.begin());
  auto cse = std::make_const_sentinel(vec.end());

  for (auto& n : std::ranges::subrange{cit, cse}) {
    std::cout << n << ", ";
    // 変更できない
    // n = 0;
  }
}

出力

1, 2, 3, 4, 5, 

バージョン

言語

  • C++23

処理系

参照