ClojureDocs

Nav

Namespaces

inspect-table

clojure.inspector

Available since 1.0
  • (inspect-table data)
creates a graphical (Swing) inspector on the supplied regular
data, which must be a sequential data structure of data structures
of equal length
2 Examples
(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]))
See Also

Prints a collection of maps in a textual table. Prints table headings ks, and then a line of outp...

Added by jafingerhut

creates a graphical (Swing) inspector on the supplied hierarchical data

Added by jafingerhut
0 Notes
No notes for inspect-table