Fork me on GitHub
#specter
<
2016-11-15
>
nathanmarz14:11:48

in a transform, view replaces whatever is at that point with the result of the view function before continuing the transform

achesnais14:11:58

I got that – but here, shouldn’t :value and (view :value) be equivalent?

achesnais14:11:34

(your lib is so great by the way)

nathanmarz14:11:14

no, :value on its own navigates to the subvalue and continues the transform from there

nathanmarz14:11:01

(transform :a afn data) is the same as (update data :a afn)

achesnais16:11:00

I think I got it