Skip to content

Instantly share code, notes, and snippets.

@wilkes
Created August 12, 2010 15:35
Show Gist options
  • Save wilkes/521162 to your computer and use it in GitHub Desktop.
Save wilkes/521162 to your computer and use it in GitHub Desktop.
(defn zip-with [fs & arg-seqs]
(apply map (fn [f & args] (apply f args)) fs arg-seqs))
;; => (zip-with [+ -] [1 2] [3 4]) => '(4 -2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment