IndexPath
public extension IndexPath
-
Creates an
IndexPathgiven the specifiedRawRepresentablevalue for the row and a section.Declaration
Swift
init<T>(row: T, section: Int) where T : RawRepresentable, T.RawValue == Int -
Creates an
IndexPathgiven the specified row and aRawRepresentablevalue for the section.Declaration
Swift
init<T>(row: Int, section: T) where T : RawRepresentable, T.RawValue == Int -
Creates an
IndexPathgiven the specifiedRawRepresentablevalues for both the row and section.Declaration
Swift
init<T>(row: T, section: T) where T : RawRepresentable, T.RawValue == Int -
Undocumented
Declaration
Swift
static func == (tuple: (Int, Int), indexPath: IndexPath) -> Bool -
Undocumented
Declaration
Swift
static func == (indexPath: IndexPath, tuple: (Int, Int)) -> Bool
View on GitHub
IndexPath Extension Reference