This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-12-20
Channels
- # adventofcode (47)
- # announcements (3)
- # aws (29)
- # bangalore-clj (3)
- # beginners (63)
- # boot (2)
- # braveandtrue (40)
- # calva (34)
- # cider (37)
- # cljs-dev (8)
- # clojars (3)
- # clojure (45)
- # clojure-europe (2)
- # clojure-france (4)
- # clojure-india (2)
- # clojure-italy (44)
- # clojure-japan (4)
- # clojure-nl (39)
- # clojure-serbia (1)
- # clojure-spec (21)
- # clojure-uk (75)
- # clojurescript (28)
- # cursive (24)
- # data-science (3)
- # datomic (31)
- # emacs (13)
- # fulcro (35)
- # hoplon (21)
- # jobs-discuss (66)
- # nrepl (18)
- # off-topic (72)
- # pathom (35)
- # re-frame (20)
- # reagent (54)
- # shadow-cljs (35)
- # spacemacs (9)
- # specter (8)
- # sql (13)
- # testing (9)
- # tools-deps (21)
- # vim (3)
Interestingly (range)
returns something that statically satisfies counted?
(which doesn’t make it right—just a little more challenging to fix)
ok, yeah:
Clojure 1.10.0
user=> (counted? (range))
false
user=> (counted? (range 1 10))
true
While writing a spec for next
, I came across this error:
https://dev.clojure.org/jira/browse/CLJS-3023
So far I haven’t been able to see why it’s happening. Maybe because next
is used a lot by spec internally
I have a question regarding the code base, I am trying to move the special-doc-map
from src/main/clojure/cljs/repl.cljc
to src/main/cljs/cljs/repl.cljs
but I keep getting a cljs.repl/special-doc-map
not found error while launching script/repljs
I wondering if the are on the classpath or I am doing something wrong
the goal being able to see special-doc-map
in cljs - not macro - in the cljs.repl
namespace