Skip to content

Making JSObject hashable #158

Closed
Closed
@mhavu

Description

@mhavu

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)
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions