Whenever you need to iteratively apply a fn to some data, reduce is your friend: (defn update-vals [map vals f] (reduce #(update-in % [%2] ...
確定! 回上一頁