Instance Method インスタンスメソッド

suffix(_:)

Returns a subsequence, up to the given maximum length, containing the final elements of the sequence. 下位シーケンスを、指定された最大長まで、シーケンスの末尾の要素を含めて返します。

Declaration 宣言

func suffix(_ maxLength: Int) -> [Element]

Parameters パラメータ

maxLength

The maximum number of elements to return. The value of maxLength must be greater than or equal to zero. 返される要素の最大限の数。maxLengthの値は、ゼロより大きいか等しくなければなりません。

Discussion 解説

The sequence must be finite. If the maximum length exceeds the number of elements in the sequence, the result contains all the elements in the sequence. シーケンスは有限でなければなりません。最大長がシーケンスの要素の数を越えるならば、結果はシーケンスの要素すべてを含みます。


let numbers = [1, 2, 3, 4, 5]
print(numbers.suffix(2))
// Prints "[4, 5]"
print(numbers.suffix(10))
// Prints "[1, 2, 3, 4, 5]"

Complexity: O(n), where n is the length of the sequence. 計算量:O(n)、ここでnはシーケンスの長さです。