typealias AnySequence.Iterator
A type that provides the sequence’s iteration interface and encapsulates its iteration state.
そのシーケンスの持つ反復インターフェイスを提供してそれの反復状態をカプセル化するある型。
Availability
Technology
@frozen struct AnySequence<Element>
An instance of Any
forwards its operations to an underlying base sequence having the same Element
type, hiding the specifics of the underlying sequence.
Any
のインスタンスは、同じElement
型を持つある基礎をなす基盤シーケンスへと操作を転送します、基礎をなすシーケンスの特殊化を隠します。
typealias AnySequence.Iterator
init<I>(() -> I)
makeIterator()
method forwards to makeUnderlyingIterator
.
それのmakeIterator()
メソッドをmakeUnderlyingIterator
へと転送するあるシーケンスを作成します。
init<S>(S)
base
.
base
をラップしてそれへと演算を転送する新規シーケンスを作成します。
var lazy: LazySequence<AnySequence<Element>>
map
and filter
, are implemented lazily.
このシーケンスと同じ要素を含んでいるシーケンス、しかしそれの上で何らかの演算、例えばmap
やfilter
が遅延に実装されます。
var underestimatedCount : Int
func allSatisfy ((Element) -> Bool) -> Bool
func compactMap <ElementOfResult>((Element) -> ElementOfResult?) -> [ElementOfResult]
nil
results of calling the given transformation with each element of this sequence.
指定された変換をこのシーケンスの各要素で呼び出す結果で非-nil
のものを含んでいる配列を返します。
func contains(Element) -> Bool
Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
func contains(where: (Element) -> Bool) -> Bool
func elementsEqual <OtherSequence>(OtherSequence) -> Bool
Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
func elementsEqual <OtherSequence>(OtherSequence, by: (Element, OtherSequence.Element) -> Bool) -> Bool
func enumerated() -> EnumeratedSequence<AnySequence<Element>>
func first(where: (Element) -> Bool) -> Element?
func flatMap <SegmentOfResult>((Element) -> SegmentOfResult) -> [SegmentOfResult.Element]
func flatMap <ElementOfResult>((Element) -> ElementOfResult?) -> [ElementOfResult]
nil
results of calling the given transformation with each element of this sequence.
指定された変換をこのシーケンスの各要素で呼び出す結果で非-nil
のものを含んでいる配列を返します。
func joined() -> FlattenSequence<AnySequence<Element>>
Element
conforms to Sequence
.
Element
がSequence
に準拠する時に利用可能です。
func joined<Separator>(separator: Separator) -> JoinedSequence<AnySequence<Element>>
Element
conforms to Sequence
.
Element
がSequence
に準拠する時に利用可能です。
func joined(separator: String) -> String
Element
conforms to StringProtocol
.
Element
がStringProtocol
に準拠する時に利用可能です。
func lexicographicallyPrecedes <OtherSequence>(OtherSequence) -> Bool
<
) to compare elements.
そのシーケンスが別のシーケンスの前に来るかどうかを、ある語彙筆記的順序(字典)順序において、より小さい演算子(<
)を使って要素を比較して、指し示すブール値を返します。
Element
conforms to Comparable
.
Element
がComparable
に準拠する時に利用可能です。
func lexicographicallyPrecedes <OtherSequence>(OtherSequence, by: (Element, Element) -> Bool) -> Bool
func makeIterator () -> AnySequence<Element>.Iterator
func max() -> Element?
Element
conforms to Comparable
.
Element
がComparable
に準拠する時に利用可能です。
func max(by: (Element, Element) -> Bool) -> Element?
func min() -> Element?
Element
conforms to Comparable
.
Element
がComparable
に準拠する時に利用可能です。
func min(by: (Element, Element) -> Bool) -> Element?
func reduce<Result>(Result, (Result, Element) -> Result) -> Result
func reduce<Result>(into: Result, (inout Result, Element) -> ()) -> Result
func reversed() -> [Element]
func shuffled() -> [Element]
func shuffled<T>(using: inout T) -> [Element]
func sorted() -> [Element]
Element
conforms to Comparable
.
Element
がComparable
に準拠する時に利用可能です。
func sorted(by: (Element, Element) -> Bool) -> [Element]
func split(maxSplits : Int, omittingEmptySubsequences : Bool, whereSeparator : (Element) -> Bool) -> [ArraySlice<Element>]
func split(separator: Element, maxSplits : Int, omittingEmptySubsequences : Bool) -> [ArraySlice<Element>]
Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
func starts<PossiblePrefix>( with: PossiblePrefix) -> Bool
Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
func starts<PossiblePrefix>( with: PossiblePrefix, by: (Element, PossiblePrefix.Element) -> Bool) -> Bool
func withContiguousStorageIfAvailable <R>((UnsafeBufferPointer<Element>) -> R) -> R?
struct AnyCollection
struct AnyBidirectionalCollection
struct AnyRandomAccessCollection
struct AnyIterator
Element
.
Element
の型消去イテレータ。
struct AnyIndex
struct AnyHashable