This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-12-11
Channels
- # adventofcode (52)
- # announcements (3)
- # aws (2)
- # babashka (36)
- # babashka-sci-dev (4)
- # beginners (69)
- # biff (45)
- # calva (9)
- # cider (3)
- # clara (8)
- # clj-kondo (24)
- # clojure (20)
- # clojure-dev (12)
- # clojure-europe (12)
- # clojurescript (2)
- # conjure (1)
- # emacs (17)
- # lsp (69)
- # malli (12)
- # off-topic (32)
- # polylith (2)
- # re-frame (4)
- # releases (2)
- # scittle (6)
- # shadow-cljs (21)
- # tools-deps (10)
- # vim (11)
- # xtdb (11)
Do I understand correctly that sci/scittle does not support PeristentQueue
because it relies on deftype
? Interestingly, it does somewhat recognise #queue
, bit then throws Error: Could not resolve symbol: cljs
.
I ended up (for today’s Aoc puzzle) borrowing some ClojureScript source code to implement the bare minimum of queue functions and learned. 🙂
@jurjanpaul502 It's supported in #C029PTWD3HR. The limitations of deftype only apply to interpreted source code, not to built-ins. I usually only add this stuff when people ask, or if I hit the issue myself, so feel free to make an issue and it will be added for the next release
Ok, thanks! Good to know! I will make an issue (mostly because I noticed other clojurians really like to have it handy.)
@jurjanpaul502 Should be fixed with scittle 0.5.13
Excellent! Thanks.