Return Value 戻り値
The sequence’s minimum element. If the sequence has no elements, returns nil
.
シーケンスの最小の要素。シーケンスが要素を持たないならば、nil
を返します。
Availability
Technology
@warn_unqualified_access func min() async rethrows -> Base.Element
?
Base
.
Element
conforms to Comparable
.
Base
.
Element
がComparable
に準拠する時に利用可能です。
The sequence’s minimum 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 min()
method returns the minimum value of the sequence.
この例において、Counter
と呼ばれる非同期シーケンスはInt
値を1
から10
まで生み出します。min()
メソッドは、シーケンスの最小値を返します。