11

我觉得必须有一种更清洁的方法来做到这一点,但我看不到。

(defn map-rest
  "Passes through the first item in coll intact. Maps the rest with f."
  [f coll]
  (concat (list (first coll)) (map f (rest coll))))
4

1 回答 1

25

解构和使用cons而不是concat

(defn map-rest [f [fst & rst]] (cons fst (map f rst)))

REPL 输出:

user=> (map-rest inc [1 2 3 4 5])
(1 3 4 5 6)
于 2012-10-22T17:32:11.807 回答