cljs.pprint/pprint-tab

functionsince v0.0-3255 clojure.pprint/pprint-tabEdit
(pprint-tab kind colnum colinc)

Source docstring:
Tab at this point in the pretty printing stream. kind specifies whether the tab
is :line, :section, :line-relative, or :section-relative.

Colnum and colinc specify the target column and the increment to move the target
forward if the output is already past the original target.

This function is intended for use when writing custom dispatch functions.

Output is sent to *out* which must be a pretty printing writer.

THIS FUNCTION IS NOT YET IMPLEMENTED.
Source code @ clojurescript:src/main/cljs/cljs/pprint.cljs
(defn pprint-tab
  {:added "1.2"}
  [kind colnum colinc]
  (check-enumerated-arg kind #{:line :section :line-relative :section-relative})
  (throw (js/Error. "pprint-tab is not yet implemented")))