Instance Method
インスタンスメソッド
form
formIndex(after:)
Modifies the given index to refer to the item after the one it currently refers to.
与えられたインデックスを、それが現在参照するものの後の項目を参照するように修正します。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Foundation ファウンデーション
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Manipulating Indexes インデックスを操作する
var startIndex : IndexSet.Index
The beginning index in the set.
集合の中の開始インデックス。
var endIndex : IndexSet.Index
The ending index in the set.
集合の中の終了インデックス。
func index(after: IndexSet.Index) -> IndexSet.Index
Returns the index that follows the given index in the set.
集合の中の与えられたインデックスに続くインデックスを返します。
func index(before: IndexSet.Index) -> IndexSet.Index
Returns the index that precedes the given index in the set.
集合の中の与えられたインデックスに先行するインデックスを返します。
func formIndex (before: inout IndexSet.Index)
Modifies the given index to refer to the item before the one it currently refers to.
与えられたインデックスを、それが現在参照するものの前の項目を参照するように修正します。
func indexRange (in: Range<IndexSet.Element>) -> Range<IndexSet.Index>
Return a
Range<IndexSet.Index>
which can be used to subscript the index set.
Range<IndexSet.Index>
を返します、それはインデックス集合の添え字として使われることができます。