other-languages

emccue 2022-02-22T01:33:30.494269Z

Does anyone have opinions about Apache Ivy?

teodorlu 2022-02-22T11:24:17.173559Z

I'm working with XML in Go. Transform one tree to a different tree. In Clojure, I'd reach for clojure.walk. Any recommendations?

Ben Sless 2022-02-22T11:51:40.021649Z

Port clojure walk to go

👍 1
🙌 1
teodorlu 2022-02-22T21:03:02.424509Z

Yup, I think that's the way to go. I may specialize the type signature to exactly what I'm working with to avoid confusion.

teodorlu 2022-02-23T15:44:37.238349Z

Result: A small XML tree walker for use with http://github.com/beevik/etree. Provide a function, and return an action if you want to change the tree structure.