Refactor MergeLists

This commit is contained in:
Peter
2019-08-02 02:19:00 +03:00
parent 17223c9cfb
commit c3c7a4c368
5 changed files with 616 additions and 27 deletions

View File

@@ -0,0 +1,6 @@
import Foundation
public protocol Identifiable {
associatedtype T: Hashable
var stableId: T { get }
}