The maximum number of elements to return. max
must be greater than or equal to zero.
返される要素の最大限の数。max
は、ゼロより大きいか等しくなければなりません。
Instance Method
インスタンスメソッド
prefix(_:)
Returns a subsequence, up to the specified maximum length, containing the initial elements of the 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 宣言
func prefix(_ maxLength: Int
) -> Slice
<AttributedString
.UnicodeScalarView
>
Parameters パラメータ
maxLength
Length Length
Return Value 戻り値
A subsequence starting at the beginning of this collection with at most max
elements.
このコレクションの先端で始まる多くともmax
要素の下位シーケンス。
Discussion 議論
If the maximum length exceeds the number of elements in the collection, the result contains all the elements in the collection. 最大長がコレクションの要素の数を超えるならば、結果はコレクションの要素すべてを含みます。
Complexity: O(1) if the collection conforms to Random
; otherwise, O(k), where k is the number of elements to select from the beginning of the collection.
計算量:O(1)、もしコレクションがRandom
に準拠するならば;そうでなければ、O(k)、ここでkはコレクションの冒頭から選ぶ要素の数です。