creates a graphical (Swing) inspector on the supplied regular data, which must be a sequential data structure of data structures of equal length
(use 'clojure.inspector) (inspect-table [{:a 1 :b 2 :c 3}{:a 4 :b 5 :c 6}])
;; display every element type alongside value in table user=> (inspect-table (map #(vector (type %) %) [1 "something" \c (java.io.File. "/tmp/x") 0.12 1234]))
Prints a collection of maps in a textual table. Prints table headings ks, and then a line of outp...
creates a graphical (Swing) inspector on the supplied hierarchical data
inspect-table