//
//  NSDiffableDataSourceSnapshot.swift
//  Mastodon
//
//  Created by Cirno MainasuK on 2021-6-19.
//

import UIKit

//extension NSDiffableDataSourceSnapshot {
//    func itemIdentifier(for indexPath: IndexPath) -> ItemIdentifierType? {
//        guard 0..<numberOfSections ~= indexPath.section else {
//            return nil
//        }
//
//        let items = itemIdentifiers(inSection: sectionIdentifiers[indexPath.section])
//
//        guard 0..<items.endIndex ~= indexPath.item else {
//            return nil
//        }
//
//        return items[indexPath.item]
//    }
//}