Sets should exist #69
Labels
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Depends on
#90 `Value` should be `Hash`
twc/ludus
Reference: twc/ludus#69
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Sets are a useful datatype! And maybe even should be what we use to get keyboard events.
Value
needs to be hashable (b/cf64
is not hashable)Moving this to post-CC. This involves a more subtle problem than I had anticipated:
RefCell
s (andimbl::HashMap
s, for some reason) are notHash
. I can get behind the idea that Ludusbox
es shouldn't go in data structures, maybe, butdict
s most certainly should be able to. So we are without sets until I figure out how to implementHash
forValue
.