A range-replaceable collection. 範囲置換可能なコレクション。
Generic Operator+(_:
+(_:_:)
Creates a new collection by concatenating the elements of two collections.
2つのコレクションの要素を連結することによって新しいコレクションを作成します。
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: String
.UnicodeScalarView
, rhs: Other) -> String
.UnicodeScalarView
where Other : RangeReplaceableCollection
, Unicode
.Scalar
== Other.Element
Parameters パラメータ
lhs
rhs
Another range-replaceable collection. もう一方の範囲置換可能なコレクション。
Discussion 解説
The two arguments must have the same Element
type. For example, you can concatenate the elements of two integer arrays.
2つの引数は、同じElement
型を持たなければなりません。例えば、あなたは2つの整数配列に属する要素を連結することができます。
The resulting collection has the type of the argument on the left-hand side. In the example above, more
has the same type as numbers
, which is [Int]
.
結果となるコレクションは、左手側の引数の型を持ちます。上の例において、more
はnumbers
と同じ型を持ちます、それは[Int]
です。