Fork me on GitHub
#specter
<
2018-01-03
>
mbjarland03:01:25

if I wanted to do a chain of transformations and wanted to avoid writing:

(let [data (transform ... data)
      data (transform ... data)
        ...] )
how would I go about that?

nathanmarz04:01:27

@mbjarland either (->> data (transform ...) (transform ...)) or use multi-transform

nathanmarz04:01:13

i prefer the former except where paths share a lot of structure