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 40d4b2c commit 8ffadf8Copy full SHA for 8ffadf8
Source/Protocols.swift
@@ -35,6 +35,12 @@ public protocol IHashable /*: Equatable*/ {
35
var hashValue: Int { get }
36
}
37
38
+typealias Identifiable = IIdentifiable
39
+protocol IIdentifiable {
40
+ associatedtype ID: IHashable
41
+ var id: ID { get }
42
+}
43
+
44
public typealias OutputStreamType = IOutputStreamType
45
public protocol IOutputStreamType {
46
//mutating func write(_ string: String)
0 commit comments