Created
July 26, 2020 14:42
-
-
Save davbeck/fd9a18d6c9e938df402f7c213ef30fca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@propertyWrapper | |
struct IgnoreHashable<T>: Hashable { | |
var wrappedValue: T | |
init(wrappedValue: T) { | |
self.wrappedValue = wrappedValue | |
} | |
func hash(into hasher: inout Hasher) {} | |
static func == (lhs: Self, rhs: Self) -> Bool { | |
return true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment