func forEach (((key: Key, value: Value)) -> Void)
Calls the given closure on each element in the sequence in the same order as a
for
-in
loop.
指定されたクロージャをそのシーケンスの各要素上でfor
-in
ループと同じ順番で呼び出します。
func enumerated() -> EnumeratedSequence<Dictionary<Key, Value>>
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 makeIterator () -> Dictionary<Key, Value>.Iterator
Returns an iterator over the dictionary’s key-value pairs.
辞書のキー値ペアすべてを対象とするイテレータを返します。
var underestimatedCount : Int
A value less than or equal to the number of elements in the collection.
このコレクションの中の要素の数より少ないか等しい値。