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