Instance Method
インスタンスメソッド
make
makeIterator()
Returns an iterator over the members of the set.
集合のメンバすべてを対象とするイテレータを返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Iterating over a Set 集合のすべてに反復する
func enumerated() -> EnumeratedSequence<Set<Element>>
Returns a sequence of pairs (n, x), where n represents a consecutive integer starting at zero and x represents an element of the sequence.
ペア (n, x) のシーケンスを返します、そこでnはゼロで開始する連続した数を表して、xはシーケンスの要素を表します。
func forEach ((Element) -> Void)
Calls the given closure on each element in the sequence in the same order as a
for
-in
loop.
指定されたクロージャをそのシーケンスの各要素上でfor
-in
ループと同じ順番で呼び出します。
var underestimatedCount : Int
A value less than or equal to the number of elements in the collection.
このコレクションの中の要素の数より少ないか等しい値。