A collection or finite sequence. あるコレクションまたは有限シーケンス。
Generic Operator+(_:
+(_:_:)
Creates a new collection by concatenating the elements of a sequence and a 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 range-replaceable collection. 範囲置換可能なコレクション。
Discussion 議論
The two arguments must have the same Element
type. For example, you can concatenate the elements of a Range<Int>
instance and an integer array.
2つの引数は、同じElement
型を持たなければなりません。例えば、あなたはあるRange<Int>
インスタンスの要素それらを、整数配列と連結できます。
The resulting collection has the type of argument on the right-hand side. In the example above, more
has the same type as numbers
, which is [Int]
.
結果のコレクションは、右手側での引数の型を持ちます。上の例では、more
はnumbers
と同じ型を持ちます、それは[Int]
です。