std.print
print-column
added in 3.0
(print-column items name color)prints the column
(-> (print-column [:id.a {:data 100} :id.b {:data 200}] :data #{}) (print/with-out-str))
print-header
added in 3.0
(print-header keys {:keys [padding columns], :as params})prints a header for the row
(-> (print-header :id :name :value {:padding 0 :spacing 1 :columns {:align :right :length 10} {:align :center :length 10} {:align :left :length 10}}) (print/with-out-str))
print-subtitle
added in 3.0
(print-subtitle subtitle)prints the subtitle
(-> (print-subtitle “Hello Again”) (print/with-out-str))
print-summary
added in 3.0
(print-summary m)outputs the summary of results
(-> (print-summary {:count 6 :files 2}) (print/with-out-str))
print-title
added in 3.0
(print-title title)prints the title
(-> (print-title “Hello World”) (print/with-out-str))
print-tree-graph
added in 3.0
(print-tree-graph tree)outputs the result of format-tree
(-> (print-tree-graph ’[{a “1.1”} [{b “1.2”} [{c “1.3”} {d “1.4”}]]]) (print/with-out-str)) => string?