Persistent data structures #42
Labels
No Label
accepted
bug
clj
documentation
enhancement
errors
infrastructure
later
next
now
optimization
proposal
question
research
semantics
syntax
ux
vm
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: twc/ludus#42
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?
Right now, the Janet interpreter uses a copy-on-write strategy, which is surely enough for the kind of work we're doing for Computer Class. But: eventually, we'll want persistent data structures à la Clojure.
Consider https://github.com/pyrmont/persimmon/tree/master/src.
However, this may also lie in the realm of "optimization," which may not make sense until we do a bytecode VM, in which case, this will be tied directly to a Zig-based reference-counting memory allocation strategy. So this could be a 0.2.0 milestone if Persimmon isn't adequate or straightforward to integrate.