This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-07-10
Channels
- # announcements (3)
- # architecture (54)
- # babashka (11)
- # beginners (12)
- # calva (5)
- # clj-on-windows (1)
- # cljdoc (2)
- # cljs-dev (1)
- # cljsrn (6)
- # clojure (130)
- # clojure-europe (8)
- # clojurescript (21)
- # conjure (23)
- # core-async (4)
- # datomic (7)
- # depstar (77)
- # events (1)
- # fulcro (27)
- # lsp (88)
- # malli (5)
- # meander (1)
- # off-topic (4)
- # pathom (43)
- # polylith (39)
- # re-frame (9)
- # shadow-cljs (14)
- # timbre (3)
- # tools-deps (53)
hello all, -> what is the meaning of this error ?
(-> {::config/config "a"}) -> "Invalid token: ::config/config"
Best way to convert a JSON to an EDN or Transit? I want to make my tweets.json more workable
@deleted-user thatās a super cool profile image. Exhale some flowers.
Do yāall ever use ātransientā or āpersistentā in clojureland?
@sova You mean the core functions transient
and persistent!
? Yes, we use them at work in a few places.
Yeah, Iām wondering when they would be useful
They are to facilitate an optimization.
If you are constructing a large hash map programmatically, for example, it can be more efficient to start with (transient {})
and build up the hash map and then call persistent!
on it, than using purely immutable hash maps all the way through.