The array to append to. この配列に対して追加することになります。
Generic Operator+=(_:
+=(_:_:)
Appends the elements of a sequence to a range-replaceable collection.
あるシーケンスの要素を範囲置換コレクションに加えます。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
lhs
rhs
A collection or finite sequence. あるコレクションまたは有限シーケンス。
Discussion 議論
Use this operator to append the elements of a sequence to the end of range-replaceable collection with same Element
type. This example appends the elements of a Range<Int>
instance to an array of integers.
この演算子を使って、あるシーケンスの要素いくつかを、同じElement
型をもつ範囲置換可能コレクションへと追加してください。この例は、Range<Int>
インスタンスの要素を、整数からなるある配列に追加します。
Complexity: O(m), where m is the length of the right-hand-side argument. 計算量:O(m)、ここでmは右手側の引数の長さです。