Slather logo

Coverage for "IndexPath+Extension.swift" : 100.00%

(0 of 0 relevant lines covered)

ChatLayout/Classes/Core/Extensions/IndexPath+Extension.swift

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
// 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
}