Generic Structure
AsyncPrefixSequence
An asynchronous sequence, up to a specified maximum length, containing the initial elements of a base asynchronous sequence.
指定された最大長まで、その基盤非同期シーケンスの冒頭の要素を含んでいる、ある非同期シーケンス。
Technology
- Swift Standard Library
Swift標準ライブラリ
Topics
話題
Instance Methods
インスタンスメソッド
func allSatisfy((Base.Element) -> Bool) -> Bool
Returns a Boolean value that indicates whether all elements produced by the asynchronous sequence satisfies the given predicate.
あるブール値を返します、それは非同期シーケンスによって生み出される全ての要素がこの与えられた述部を満足させるかどうかを指し示します。
func contains(Base.Element) -> Bool
Returns a Boolean value that indicates whether the asynchronous sequence contains the given element.
あるブール値を返します、それは非同期シーケンスがこの与えられた要素を含むかどうかを指し示します。
Available when Base
.
Element
conforms to Equatable
.
Base
.
Element
がEquatable
に準拠する時に利用可能です。
func max() -> Base.Element?
Returns the maximum element in an asynchronous sequence of comparable elements.
比較可能要素それらからなるある非同期シーケンスの中の最大の要素を返します。
Available when Base
.
Element
conforms to Comparable
.
Base
.
Element
がComparable
に準拠する時に利用可能です。
func min() -> Base.Element?
Returns the minimum element in an asynchronous sequence of comparable elements.
比較可能要素それらからなるある非同期シーケンスの中の最小の要素を返します。
Available when Base
.
Element
conforms to Comparable
.
Base
.
Element
がComparable
に準拠する時に利用可能です。
See Also
参照
Selecting Elements
要素の選択
func prefix(Int) -> AsyncPrefixSequence<Self>
Returns an asynchronous sequence, up to the specified maximum length, containing the initial elements of the base asynchronous sequence.
指定された最大長まで、その基底非同期シーケンスの冒頭の要素を含んでいる、ある非同期シーケンスを返します。
struct AsyncPrefixWhileSequence
An asynchronous sequence, containing the initial, consecutive elements of the base sequence that satisfy a given predicate.
ある非同期シーケンス、それは基底シーケンスの冒頭の、連続する要素いくつかを含んでいます、それらは与えられた述部を満たすものです。
struct AsyncThrowingPrefixWhileSequence
An asynchronous sequence, containing the initial, consecutive elements of the base sequence that satisfy the given error-throwing predicate.
ある非同期シーケンス、それは基底シーケンスの冒頭の、連続する要素いくつかを含んでいます、それらは与えられたエラースロー述部を満たすものです。