Discussion 解説
When you need to check whether your collection is empty, use the is
property instead of checking that the count
property is equal to zero. For collections that don’t conform to Random
, accessing the count
property iterates through the elements of the collection.
あなたのコレクションが空かどうか確認する必要がある場合、is
プロパティを使ってください、count
プロパティがゼロと等しいのを調べるのではなく。Random
に準拠しないコレクションに対して、count
プロパティにアクセスすることはコレクションの要素を始めから終わりまで反復します。
Complexity: O(1) 計算量:O(1)
Note 注意
This documentation comment was inherited from Collection
.
この文書化コメントは、Collection
から引き継がれました。