Closed
Description
Is there anything that would prevent using the object id for hashing in JSObject
? Since hash values in Swift change between sessions anyway, I can't immediately see why using id would be a bad idea. All that would be needed to make JSObject
conform to Hashable
is to add:
public func hash(into hasher: inout Hasher) {
hasher.combine(id)
}