func first(where: (UInt8) -> Bool) -> UInt8?
Returns the first element of the sequence that satisfies the given predicate.
与えられた述部を満たすこのシーケンスの最初の要素を返します。
func max() -> UInt8?
Returns the maximum element in the sequence.
シーケンスの中の最大の要素を返します。
func max(by: (UInt8, UInt8) -> Bool) -> UInt8?
Returns the maximum element in the sequence, using the given predicate as the comparison between elements.
シーケンスの中の最大の要素を返します、与えられた述部を要素間の比較として使います。
func min() -> UInt8?
Returns the minimum element in the sequence.
シーケンスの中の最小の要素を返します。
func min(by: (UInt8, UInt8) -> Bool) -> UInt8?
Returns the minimum element in the sequence, using the given predicate as the comparison between elements.
シーケンスの中の最小の要素を返します、与えられた述部を要素間の比較として使います。
typealias Data.SearchOptions
Options that control a data search operation.
データ検索演算を制御するオプション。