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.
シーケンスの中の最小の要素を返します、与えられた述部を要素間の比較として使います。
func range(of: Data, options: Data.SearchOptions, in: Range<Data.Index>?) -> Range<Data.Index>?
Finds the range of the specified data as a subsequence of this data, if it exists.
このデータの下位シーケンスとして指定された範囲のデータを捜します、それが存在するならば。
typealias Data.SearchOptions
Options that control a data search operation.
データ検索演算を制御するオプション。