mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-13 12:01:01 +00:00
25 lines
676 B
Swift
25 lines
676 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
extension Array where Element: Sequence, Element.Element: Hashable {
|
|
func snapshot() -> NSDiffableDataSourceSnapshot<Int, Element.Element> {
|
|
var snapshot = NSDiffableDataSourceSnapshot<Int, Element.Element>()
|
|
|
|
let sections = [Int](0..<count)
|
|
|
|
snapshot.appendSections(sections)
|
|
|
|
for section in sections {
|
|
snapshot.appendItems(self[section].map { $0 }, toSection: section)
|
|
}
|
|
|
|
return snapshot
|
|
}
|
|
}
|
|
|
|
extension Array where Element: Hashable {
|
|
func snapshot() -> NSDiffableDataSourceSnapshot<Int, Element> {
|
|
[self].snapshot()
|
|
}
|
|
}
|