The maximum number of elements to return. max
must be greater than or equal to zero.
返される要素の最大限の数。max
は、ゼロより大きいか等しくなければなりません。
Instance Method
インスタンスメソッド
suffix(_:)
Returns a subsequence, up to the given maximum length, containing the final elements of the collection.
下位シーケンスを、指定された最大長まで、コレクションの末尾の要素を含めて返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func suffix(_ maxLength: Int
) -> Slice
<UnsafeMutableBufferPointer
<Element>>
Parameters パラメータ
maxLength
Length Length
Return Value 戻り値
A subsequence terminating at the end of the collection with at most max
elements.
コレクションの末端で終わっていて多くともmax
の要素を持つ下位シーケンス。
Discussion 解説
If the maximum length exceeds the number of elements in the collection, the result contains the entire collection. 最大長がコレクションの要素の数を越えるならば、結果はコレクション全体を含みます。
Complexity: O(1) if the collection conforms to Random
; otherwise, O(k), where k is equal to max
.
計算量:コレクションがRandom
に準拠するならば、O(1);そうでなければ、O(k)、そこでkはmax
に相当します。