The element to append to the collection. この要素をコレクションへ追加します。
Instance Method
インスタンスメソッド
append(_:)
Adds an element to the end of the collection.
ある要素をコレクションの終わりに加えます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
mutating func append(_ newElement: Character
)
Parameters パラメータ
newElement
Discussion 解説
If the collection does not have sufficient capacity for another element, additional storage is allocated before appending new
. The following example adds a new number to an array of integers:
コレクションが別の要素に対して十分な容量を持たないならば、追加のストレージがnew
を追加する前に割り当てられます。次の例は、ある新しい要素を整数からなる配列へ加えます:
Complexity: O(1) on average, over many calls to append(_:)
on the same collection.
計算量:同じコレクション上でのappend(_:)
への多くの呼び出しに対して、均してO(1)。