1 |
//
|
|
2 |
// ChatLayout
|
|
3 |
// IndexPath+Extension.swift
|
|
4 |
// https://github.com/ekazaev/ChatLayout
|
|
5 |
//
|
|
6 |
// Created by Eugene Kazaev in 2020-2022.
|
|
7 |
// Distributed under the MIT license.
|
|
8 |
//
|
|
9 |
|
|
10 |
import Foundation
|
|
11 |
|
|
12 |
extension IndexPath {
|
|
13 |
|
|
14 |
var itemPath: ItemPath {
|
! |
15 |
return ItemPath(for: self)
|
! |
16 |
}
|
! |
17 |
|
|
18 |
}
|
|