我有一个Map列表,我需要从Clojure中的列表中获取偶数/奇数索引元素。 ... user=> (take-nth 2 [0 1 2 3 4 5 6 7 8 9]) (0 2 4 6 8) user=> (take-nth 2 (rest [0 1 2 ...
確定! 回上一頁