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

count

Returns the number of elements. 要素の数を返します。

Declaration 宣言

var count: Int { get }
Available when Base conforms to Collection. BaseCollectionに準拠する時に利用可能です。

Discussion 解説

To check whether a collection is empty, use its isEmpty property instead of comparing count to zero. Unless the collection guarantees random-access performance, calculating count can be an O(n) operation. あるコレクションが空かどうか調べるには、それのisEmptyプロパティを使ってください、countをゼロと比較するのでなく。そのコレクションが無作為アクセス性能を保証しない限り、countの算出は、O(n)演算であるはずです。

Complexity: O(1) if Self conforms to RandomAccessCollection; O(n) otherwise. 計算量:SelfRandomAccessCollectionに準拠するならばO(1);そうでないならばO(n)。

Relationships 関係

From Protocol 由来プロトコル