view src/rlm/decorators.clj @ 1:8565803376a4

upgrading source to work with clojure 1.4
author Robert McIntyre <rlm@mit.edu>
date Tue, 28 Feb 2012 13:26:34 -0600
parents 78a630e650d2
children
line wrap: on
line source
1 (ns rlm.decorators)
4 (defn preserve-meta
5 "returns a function that will return objects with
6 same metadata as the last argument to that function"
7 [f]
8 (fn [& x] (with-meta
9 (apply f x)
10 (meta (last x)))))