Instance Property インスタンスプロパティ

count

The number of elements. 要素の数。

Declaration 宣言

var count: Int { get }

Discussion 解説

To check whether a collection is empty, use its isEmpty property instead of comparing count to zero. Calculating count can be an O(n) operation. あるコレクションが空かどうか調べるには、それのisEmptyプロパティを使ってください、countをゼロと比較するのでなく。countの算出は、O(n)演算であるはずです。

Complexity: O(n) 計算量:O(n)

Relationships 関係

From Protocol 由来プロトコル