(defn inspect-meta-information [obj] (when (> (count (meta obj)) 0) (concat '("Meta Information: " (:newline)) (mapcat (fn [[key val]] `(" " (:value ~key) " = " (:value ~val) (:newline))) (meta obj)))))
Comments top
No comments for inspect-meta-information. Log in to add a comment.