The array to append to. この配列に対して追加することになります。
Generic Operator+=(_:
+=(_:_:)
Appends the elements of a sequence to a range-replaceable collection.
あるシーケンスの要素を範囲置換コレクションに加えます。
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
static func += <Other>(lhs: inout AttributedString
.CharacterView
, rhs: Other) where Other : Sequence
, Character
== 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は右手側の引数の長さです。