Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.48 KB

op_assign.md

File metadata and controls

47 lines (33 loc) · 1.48 KB

operator=

  • iterator[meta header]
  • std[meta namespace]
  • common_iterator[meta class]
  • function[meta id-type]
  • cpp20[meta cpp]
template<class I2, class S2>
  requires convertible_to<const I2&, I> && convertible_to<const S2&, S> &&
           assignable_from<I&, const I2&> && assignable_from<S&, const S2&>
common_iterator& operator=(const common_iterator<I2, S2>& x);
  • assignable_from[link /reference/concepts/assignable_from.md]
  • convertible_to[link /reference/concepts/convertible_to.md]

概要

common_iteratorオブジェクトをコピー代入する。

事前条件

x.v_.valueless_by_exception() == falseであること。

効果

I, Sの値のどちらかをvariant<I, S>型のメンバ変数v_に保持しており、i = x.v_.index()として、次のどちらか

  • i == v_.index()trueである場合 : get<i>(v_) = get<i>(x.v_)
  • それ以外の場合 : v_.emplace<i>(get<i>(x.v_))

戻り値

*this

バージョン

言語

  • C++20

処理系

参照