A Boolean value indicating whether the collection is empty.
SDK
- Xcode 9.0+
Framework
- Swift Standard Library
Declaration
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.
Complexity: O(1)