Discussion 解説
For an instance of Array
, start
is always zero. If the array is empty, start
is equal to end
.
Array
のインスタンスに対して、start
は常にゼロです。配列が空ならば、start
はend
と等しいです。
Availability
Technology
var startIndex: Int
{ get }
For an instance of Array
, start
is always zero. If the array is empty, start
is equal to end
.
Array
のインスタンスに対して、start
は常にゼロです。配列が空ならば、start
はend
と等しいです。
var endIndex : Int
func index(after: Int) -> Int
func formIndex (after: inout Int)
func index(before: Int) -> Int
func formIndex (before: inout Int)
func index(Int, offsetBy : Int) -> Int
func formIndex (inout Int, offsetBy : Int)
func index(Int, offsetBy : Int, limitedBy : Int) -> Int?
func formIndex (inout Int, offsetBy : Int, limitedBy : Int) -> Bool
func distance(from: Int, to: Int) -> Int