var isEmpty : Bool
A Boolean value indicating whether the collection is empty.
コレクションが空かどうかを指し示すブール値。
Availability
Technology
var isEmpty: Bool
{ get }
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)
var isEmpty : Bool