The array to append to. 追加先の配列。
Generic Operator+=(_:
+=(_:_:)
Appends the elements of a sequence to a range-replaceable collection.
あるシーケンスの要素を範囲置換コレクションに加えます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
static func += <Other>(lhs: inout ArraySlice
<Element>, rhs: Other) where Other : Sequence
, Element == Other.Element
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は右手側の引数の長さです。