Processing pairs of values from two sequences in Clojure

前端 未结 3 444
星月不相逢
星月不相逢 2021-02-08 23:42

I\'m trying to get into the Clojure community. I\'ve been working a lot with Python, and one of the features I make extensive use of is the zip() method, for iterating over pair

3条回答
  •  失恋的感觉
    2021-02-09 00:34

    Another way is to simply use map together with some function that collects its arguments in a sequence, like this:

    user=> (map vector '(1 2 3) "abc")
    ([1 \a] [2 \b] [3 \c])
    

提交回复
热议问题