Hi All,

I've a application with following structure. Now I would like to access 
meta data of f1 and f2 within process function.  

(defn ^{:test true} f1 []
    (println "call f1 fn"))

(defn ^{:test false} f2 []
    (println "call f2 fn"))

(def f* (list f1 f2))

(defn process [form]
  (do
*    //Would like to access meta data of form* 
    (println (str "-->" form))))

(map #(process %1) f*)

Does any one have any idea? 


Regards,
Mamun

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to