Return Value 戻り値
The sequence’s maximum element. If the sequence has no elements, returns nil
.
シーケンスの最大の要素。シーケンスが要素を持たないならば、nil
を返します。
Availability
Technology
@warn_unqualified_access func max() async rethrows -> ElementOfResult ?
ElementOfResult
conforms to Comparable
.
ElementOfResult
がComparable
に準拠する時に利用可能です。
The sequence’s maximum element. If the sequence has no elements, returns nil
.
シーケンスの最大の要素。シーケンスが要素を持たないならば、nil
を返します。
In this example, an asynchronous sequence called Counter
produces Int
values from 1
to 10
. The max()
method returns the max value of the sequence.
この例において、Counter
と呼ばれる非同期シーケンスはInt
値を1
から10
まで生み出します。max()
メソッドは、シーケンスの最大値を返します。