This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-06-08
Channels
- # admin-announcements (3)
- # arachne (1)
- # aws (2)
- # beginners (10)
- # boot (287)
- # cider (5)
- # clara (2)
- # cljs-dev (150)
- # cljsjs (2)
- # clojure (99)
- # clojure-austin (1)
- # clojure-brasil (1)
- # clojure-dev (13)
- # clojure-greece (55)
- # clojure-japan (1)
- # clojure-nl (2)
- # clojure-russia (24)
- # clojure-spec (184)
- # clojure-taiwan (1)
- # clojure-uk (45)
- # clojurescript (55)
- # clojurex (1)
- # cursive (20)
- # datascript (16)
- # datomic (1)
- # devcards (4)
- # events (10)
- # figwheel (1)
- # funcool (7)
- # hoplon (48)
- # immutant (1)
- # jobs (6)
- # lambdaisland (2)
- # lein-figwheel (19)
- # mount (36)
- # off-topic (37)
- # om (16)
- # om-next (17)
- # onyx (29)
- # planck (53)
- # proton (1)
- # pure-frame (1)
- # re-frame (40)
- # reagent (44)
- # remote-jobs (1)
- # ring (2)
- # robots (2)
- # rum (5)
- # slack-help (4)
- # spacemacs (27)
- # specter (82)
- # test-check (18)
- # test200 (1)
- # untangled (17)
got an interesting question relating to alet
@niwinz @dialelo - #C073DKH9P is looking to improve its subscriptions, which are basically sugar over #C0620C0C8 reaction
s... as far as i can see composing reaction
s could be done very neatly with alet
this would make tracing difficult though - -fmap
and -fapply
would create new reaction
s with anonymous functions - i'm wondering if there is some way of passing alet
binding information down to -fmap
and -fapply
so that the implementation could name the functions used in the reaction
s sensibly and make tracing easier
(background here https://github.com/Day8/re-frame/issues/170 )
fmap fapply is a generic approach, and I think that if reframe needs something similar but more specialized, it should learn from generic implementation and implement a specific one.
it's really only about tracing - in this case the fmap
and fapply
implementations will produce anonymous functions - if we could name those functions according to the alet
binding steps/batches they relate to then tracing would be much better