The maximum number of elements to return. The value of max
must be greater than or equal to zero.
返される要素の最大限の数。max
の値は、ゼロより大きいか等しくなければなりません。
Instance Method
インスタンスメソッド
prefix(_:)
Returns a sequence, up to the specified maximum length, containing the initial elements of the sequence.
指定された最大長まで、そのシーケンスの冒頭の要素を含んでいる、あるシーケンスを返します。
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 宣言
func prefix(_ maxLength: Int
) -> PrefixSequence
<LazyFilterSequence
<Base>>
Parameters パラメータ
maxLength
Length Length
Return Value 戻り値
A sequence starting at the beginning of this sequence with at most max
elements.
このシーケンスの先端で始まる多くともmax
要素のあるシーケンス。
Discussion 解説
If the maximum length exceeds the number of elements in the sequence, the result contains all the elements in the sequence. 最大長がシーケンスの要素の数を越えるならば、結果はシーケンスの要素すべてを含みます。
Complexity: O(1) 計算量:O(1)