Base
in Janet
#39
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.
Depends on
#40 Janet functions
twc/ludus
Reference: twc/ludus#39
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?
Rework clj base into janet:
Prelude
works with newBase
Most base is complete in
e468add325
Left to do:
into/2
doc
to_dict
All of these have some decisions left in them.
into
is used inslice
andset
:slice
it is redundant, since slices return arrays instead of seqs in Janet.set
it is not enough, since Janet has no set type and we'll have to do some fancy footwork to get these functions to work properly.We can remove
into
frombase
, although that will mean changes inbase
and/orprelude
.to_dict
is used indict
, to convertstruct
s (which are no longer in the language) andns
es (nowpkg
s) intodict
s.I'm perfectly happy to say you can't
dict
ify apkg
, and ditchto_dict
frombase
.Now that
doc!
exists inbase
, that means we should be done with this particular discussion.