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