作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从下面以 (vector
开头的序列返回的每个元素创建一个向量。我知道 (vector
是获得我想要的东西的错误方法。它只是一个占位符。
我正在努力解决如何从三个序列中取出第一个元素并得到 ["abc-de-fghi"smith barney] [def-hi-jklm"ox todd],然后是第二个元素,第三个,等等。
感谢您的帮助。
(defn test-key-exclusion
"This function takes csv-data1 (the includees) and tests to see
if each includee is in csv-data2 (the includeds). This function
also gathers enough other data, so that excludees (those not found),
can be identified."
[csv-data1 pkey-idx1 csv-data2 pkey-idx2 lnam-idx fnam-idx]
(let [full-row-ret (map #(ret-non-match-rows csv-data2 pkey-idx2 pkey-idx1 %1) csv-data1)
filtered-row-ret (filter (complement nil?) full-row-ret)]
filtered-row-ret
(vector (map #(nth %1 pkey-idx1 nil) filtered-row-ret)
(map #(nth %1 lnam-idx nil) filtered-row-ret)
(map #(nth %1 fnam-idx nil) filtered-row-ret))))
编辑:解决方案
我用以下方法从多个序列的每个元素创建一个向量。
(defn test-key-exclusion
"This function takes csv-data1 (the includees) and tests to see
if each includee is in csv-data2 (the includeds). This function
also gathers enough other data, so that excludees (those not found),
can be identified."
[csv-data1 pkey-idx1 csv-data2 pkey-idx2 lnam-idx fnam-idx]
(map (fn [row]
(vector (nth row pkey-idx1 nil)
(nth row lnam-idx nil)
(nth row fnam-idx nil)))
(filter (complement nil?)
(map #(ret-non-match-rows csv-data2 pkey-idx2 pkey-idx1 %1) csv-data1))))
最佳答案
我想你需要的只是 map
。它可以接受多个集合:
user> (map vector [1 2 3] [:a :b :c] ["a" "b" "c"])
([1 :a "a"] [2 :b "b"] [3 :c "c"])
关于clojure - 如何将多个序列中的每个元素交织成向量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10523326/
我是一名优秀的程序员,十分优秀!