var count: Int
The number of elements in the collection.
コレクションの要素の数を返します。
var endIndex : Binding<Value>.Index
The collection’s “past the end” position—that is, the position one greater than the last valid subscript argument.
コレクションの「終わりを過ぎた」位置—すなわち、最後の有効な添え字引数より1つ大きい位置。
Available when
Value
conforms to MutableCollection
.var first: Self.Element?
The first element of the collection.
コレクションの最初の要素。
var indices: Value.Indices
The indices that are valid for subscripting the collection, in ascending order.
コレクションの添え字に使うのに有効である、昇順でのインデックス。
Available when
Value
conforms to MutableCollection
.var isEmpty : Bool
A Boolean value indicating whether the collection is empty.
コレクションが空かどうかを指し示すブール値。
var startIndex : Binding<Value>.Index
The position of the first element in a nonempty collection.
ある空でないコレクションの中の最初の要素の位置。
Available when
Value
conforms to MutableCollection
.var underestimatedCount : Int
A value less than or equal to the number of elements in the collection.
このコレクションの中の要素の数より少ないか等しい値。