We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bd94b6 commit 72c639eCopy full SHA for 72c639e
Sources/DiffableDataSourceSnapshot.swift
@@ -1,6 +1,6 @@
1
/// A class for backporting `NSDiffableDataSourceSnapshot` introduced in iOS 13.0+, macOS 10.15+, tvOS 13.0+.
2
/// Represents the mutable state of diffable data source of UI.
3
-public struct DiffableDataSourceSnapshot<SectionIdentifierType, ItemIdentifierType> where SectionIdentifierType : Hashable, ItemIdentifierType : Hashable {
+public struct DiffableDataSourceSnapshot<SectionIdentifierType: Hashable, ItemIdentifierType: Hashable> {
4
internal var structure = SnapshotStructure<SectionIdentifierType, ItemIdentifierType>()
5
6
/// Creates a new empty snapshot object.
0 commit comments