Discussion 解説
When you need a range that includes the last element of a collection, use the half-open range operator (..<
) with end
. The ..<
operator creates a range that doesn’t include the upper bound, so it’s always safe to use with end
. For example:
あなたがコレクションの最後の要素を含むある範囲を必要とする時は、半開範囲演算子(..<
)をend
とともに使ってください。..<
演算子は上方の境界を含まないある範囲を作成します、それでそれは常にend
と使うのに安全です。例えば:
If the collection is empty, end
is equal to start
.
コレクションが空ならば、end
はstart
と等しいです。
Note 注意
This documentation comment was inherited from Collection
.
この文書化コメントは、Collection
から引き継がれました。