All Questions
Tagged with identifiable generics
1 question
0
votes
1
answer
348
views
Identifiable as generic and func parameter
Hello I want to build something like below:
protocol BaseEntity: Identifiable {
var id: UUID { get set }
}
protocol DataStore {
associatedtype T: BaseEntity
typealias CompleteHandler&...