This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-12-02
Channels
- # adventofcode (20)
- # bangalore-clj (14)
- # beginners (72)
- # cider (2)
- # clara (2)
- # cljs-dev (8)
- # clojure (36)
- # clojure-brasil (201)
- # clojure-greece (29)
- # clojure-nl (1)
- # clojure-poland (1)
- # clojure-russia (2)
- # clojure-spec (5)
- # clojure-uk (4)
- # clojurescript (41)
- # cursive (1)
- # datomic (1)
- # emacs (6)
- # fulcro (80)
- # graphql (1)
- # klipse (2)
- # leiningen (5)
- # lumo (15)
- # off-topic (1)
- # om (3)
- # om-next (3)
- # re-frame (19)
- # reagent (7)
- # test-check (1)
- # uncomplicate (2)
- # yada (8)
FWIW: (seq "on a string")
uses IndexedSeq
which looks up values by array access which isn't really compatible with all browser (it should use .charAt
). That's why I was looking for (iterator-seq ..)
since it could be a workaround (iterator-seq (iter "some-string"))
would work properly.
@dnolen https://dev.clojure.org/jira/browse/CLJS-1439 if you find the time.
also a review of this would be neat. I’m pretty sure its correct but you know more abouts tags https://dev.clojure.org/jira/browse/CLJS-2385