typealias AnyIterator.Iterator
A type that provides the sequence’s iteration interface and encapsulates its iteration state.
そのシーケンスの持つ反復インターフェイスを提供してそれの反復状態をカプセル化するある型。
Element
.
Element
の型消去イテレータ。
Availability
Technology
@frozen struct AnyIterator<Element>
This iterator forwards its next()
method to an arbitrary underlying iterator having the same Element
type, hiding the specifics of the underlying Iterator
.
このイテレータは、それのnext()
メソッドを同じElement
型を持っている随意の基盤をなすイテレータに転送して、特定の基盤をなすIterator
を隠しています。
typealias AnyIterator.Iterator
init(() -> Element?)
next()
method.
与えられたクロージャをそれのnext()
の中にラップするイテレータを作成します。
init<I>(I)
var lazy: LazySequence<AnyIterator<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 drop(while: (Element) -> Bool) -> DropWhileSequence<AnyIterator<Element>>
func dropFirst (Int) -> DropFirstSequence<AnyIterator<Element>>
func dropLast (Int) -> [Element]
func elementsEqual <OtherSequence>(OtherSequence) -> Bool
Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
func elementsEqual <OtherSequence>(OtherSequence, by: (Element, OtherSequence.Element) -> Bool) -> Bool
func enumerated() -> EnumeratedSequence<AnyIterator<Element>>
func filter((Element) -> Bool) -> [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 forEach ((Element) -> Void)
for
-in
loop.
指定されたクロージャをそのシーケンスの各要素上でfor
-in
ループと同じ順番で呼び出します。
func joined() -> FlattenSequence<AnyIterator<Element>>
Element
conforms to Sequence
.
Element
がSequence
に準拠する時に利用可能です。
func joined<Separator>(separator: Separator) -> JoinedSequence<AnyIterator<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 () -> AnyIterator<Element>
func map<T>((Element) -> T) -> [T]
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 next() -> Element?
nil
if no next element exists.
次の要素へ進んでそれを返します、または次の要素が存在しないならばnil
を返します。
func prefix(Int) -> PrefixSequence<AnyIterator<Element>>
func prefix(while: (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 suffix(Int) -> [Element]
func withContiguousStorageIfAvailable <R>((UnsafeBufferPointer<Element>) -> R) -> R?
struct AnySequence
struct AnyCollection
struct AnyBidirectionalCollection
struct AnyRandomAccessCollection
struct AnyIndex
struct AnyHashable