This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-05-17
Channels
- # announcements (2)
- # asami (3)
- # babashka (30)
- # beginners (23)
- # calva (28)
- # cider (3)
- # clj-kondo (16)
- # clj-on-windows (7)
- # cljs-dev (7)
- # clojure (47)
- # clojure-austin (3)
- # clojure-europe (25)
- # clojure-gamedev (3)
- # clojure-greece (1)
- # clojure-nl (1)
- # clojure-uk (3)
- # clojurescript (54)
- # community-development (24)
- # conjure (16)
- # duct (1)
- # emacs (8)
- # events (1)
- # figwheel-main (4)
- # fulcro (13)
- # gratitude (20)
- # helix (3)
- # honeysql (8)
- # hyperfiddle (12)
- # introduce-yourself (1)
- # jobs (6)
- # lambdaisland (1)
- # lsp (23)
- # malli (1)
- # meander (27)
- # minecraft (11)
- # off-topic (12)
- # pathom (1)
- # portal (11)
- # releases (1)
- # remote-jobs (1)
- # ring (11)
- # sci (1)
- # shadow-cljs (53)
- # specter (5)
- # xtdb (20)
Just a heads up, another missing extern inference case: https://clojure.atlassian.net/browse/CLJS-3377
(defonce ^js elk (new elkjs (clj->js {:algorithms algorithms})))
^js should not be necessary herenice!!! Thank you very much.
Hey @U050B88UR I don't know exactly the implications of map js/Boolean
to boolean
, but new Boolean(false)
actually returns an Object
, that always evaluate to true
.
This wired case occurs in JVM: you can create a Boolean
object and in a if
it will always evaluate to true
@U2J4FRT2T that isn't relative to type inference though, that's just a runtime host behavior thing