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
10
import Foundation
11
12
extension IndexPath {
13
14
    var itemPath: ItemPath {
15
        return ItemPath(for: self)
16
    }
17
18
}