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

isEmpty

A Boolean value indicating whether the range contains no elements. 範囲が何の要素も含まないかどうかを指し示すブール値を返します。

Declaration 宣言

var isEmpty: Bool { get }

Discussion 解説

An empty Range instance has equal lower and upper bounds. 空のRangeインスタンスは、等しい下方および上方境界を持ちます。


let empty: Range = 10..<10
print(empty.isEmpty)
// Prints "true"

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Inspecting a Range 範囲を調査する