A closure that takes an element of the sequence as a parameter.
あるクロージャ、それはシーケンスの1要素を引数として取ります。
Discussion
解説
The two loops in the following example produce the same output:
以下の例における2つのループは、同じ出力を生み出します:
Using the forEach method is distinct from a for-in loop in two important ways:forEachメソッドを使うことは、for-inループとは2つの重要なやり方においてまったく異なります:
You cannot use a break or continue statement to exit the current call of the body closure or skip subsequent calls.
あなたは、breakまたはcontinue文を使って、bodyクロージャの現在の呼び出しを抜け出したり、または続いて起こる呼び出しを飛ばしたりできません。
Using the return statement in the body closure will exit only from the current call to body, not from any outer scope, and won’t skip subsequent calls.return文をbodyクロージャにおいて使うことは、ただ現在のbodyへの呼び出しから抜け出すだけです、全く外側のスコープからではなくて、そして続いて起こる呼び出しを飛ばしません。
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はシーケンスの要素を表します。
A sequence containing the same elements as this sequence, but on which some operations, such as map and filter, are implemented lazily.
このシーケンスと同じ要素を含んでいるシーケンス、しかしそれの上で何らかの演算、例えばmapやfilterが遅延に実装されます。