Skip to content

Instantly share code, notes, and snippets.

@davbeck
Created July 26, 2020 14:42
Show Gist options
  • Save davbeck/fd9a18d6c9e938df402f7c213ef30fca to your computer and use it in GitHub Desktop.
Save davbeck/fd9a18d6c9e938df402f7c213ef30fca to your computer and use it in GitHub Desktop.
@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