Skip to content

Instantly share code, notes, and snippets.

@beechtom
Last active October 5, 2023 05:36
Show Gist options
  • Save beechtom/e1ba3164ecd741d7fcd71ab69c877ca7 to your computer and use it in GitHub Desktop.
Save beechtom/e1ba3164ecd741d7fcd71ab69c877ca7 to your computer and use it in GitHub Desktop.
SectionedResults-02
import SwiftData
struct SectionedResults<SectionIdentifier, Result>: RandomAccessCollection
where SectionIdentifier: Hashable, Result: PersistentModel {
struct Section: RandomAccessCollection, Identifiable {
typealias ID = SectionIdentifier
var id: ID
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment