func first(where: (Int) -> Bool) -> Int?
Returns the first element of the sequence that satisfies the given predicate.
与えられた述部を満たすこのシーケンスの最初の要素を返します。
func max() -> Int?
Returns the maximum element in the sequence.
シーケンスの中の最大の要素を返します。
func max(by: (Int, Int) -> Bool) -> Int?
Returns the maximum element in the sequence, using the given predicate as the comparison between elements.
シーケンスの中の最大の要素を返します、与えられた述部を要素間の比較として使います。
func min() -> Int?
Returns the minimum element in the sequence.
シーケンスの中の最小の要素を返します。
func min(by: (Int, Int) -> Bool) -> Int?
Returns the minimum element in the sequence, using the given predicate as the comparison between elements.
シーケンスの中の最小の要素を返します、与えられた述部を要素間の比較として使います。
func integerLessThanOrEqualTo (IndexSet.Element) -> IndexSet.Element?
Returns an integer contained in
self
which is less than or equal to integer
, or nil
if a result could not be found.
self
に含まれるある整数を返します、それはinteger
と等しいかより少ないものです、または結果が見つけられないならばnil
を返します。
func integerGreaterThanOrEqualTo (IndexSet.Element) -> IndexSet.Element?
Returns an integer contained in
self
which is greater than or equal to integer
, or nil
if a result could not be found.
self
に含まれるある整数を返します、それはinteger
と等しいかより大きいものです、または結果が見つけられないならばnil
を返します。
func integerLessThan (IndexSet.Element) -> IndexSet.Element?
Returns an integer contained in
self
which is less than integer
, or nil
if a result could not be found.
self
に含まれるある整数を返します、それはinteger
とより少ないものです、または結果が見つけられないならばnil
を返します。