We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1923fe commit 334d0e5Copy full SHA for 334d0e5
1 file changed
reference/vector/vector/assign.md
@@ -27,7 +27,7 @@ constexpr void assign(initializer_list<T> il); // (3) C++20
27
28
29
## 要件
30
-- (1) : 型`T`は`*first`から`X`に対してEmplaceConstructibleでなければならない。イテレータがForward iterators の要件を満たさない場合、型`T`は`X`に対してMoveInsertableでなければならない。`[first, last)`の範囲のそれぞれのイテレータは1回だけ間接参照される。`first`, `last`は自身のイテレータであってはならない。
+- (1) : 型`T`が`*first`から`vector`コンテナへの`EmplaceConstructible`であること。`InputIterator`が前方向イテレータの要件を満たさない場合、型`T`は`vector`コンテナに対してMoveInsertableであること。`[first, last)`の範囲のそれぞれのイテレータは1回だけ間接参照される。`first`, `last`は自身のイテレータであってはならない。
31
- (2) : `t`は`*this`の要素への参照であってはならない。
32
33
0 commit comments