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

isEmpty

A Boolean value that indicates whether the dictionary is empty. 辞書が空かどうかを指し示すブール値。

Declaration 宣言

var isEmpty: Bool { get }

Discussion 解説

Dictionaries are empty when created with an initializer or an empty dictionary literal. 辞書は、イニシャライザまたは空の辞書リテラルで作成した場合は空です。


var frequencies: [String: Int] = [:]
print(frequencies.isEmpty)
// Prints "true"

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Inspecting a Dictionary 辞書を調査する