ClojureDocs

Clojure/Conj 2026 — Charlotte, NC — Sept 30 - Oct 2 Learn More & Get Tickets →

Search results for query: pr

31 to 40 of 58 results. prev page | next page

  • prewalk-demo

    clojure.walk

    • (prewalk-demo form)

    Demonstrates the behavior of prewalk by printing each form as it is walked. Returns form.

    1 example · See also: clojure.walk/prewalk
  • prefer-method

    clojure.core

    • (prefer-method multifn dispatch-val-x dispatch-val-y)

    Causes the multimethod to prefer matches of dispatch-val-x over dispatch-val-y when there is a conflict

  • *print-pretty*

    clojure.pprint

      Bind to true if you want write to use pretty printing

      1 example
    • proxy-mappings

      clojure.core

      • (proxy-mappings proxy)

      Takes a proxy instance and returns the proxy's fn map.

      1 example · See also: clojure.core/proxy
    • with-precision

      clojure.core

      • (with-precision precision & exprs)

      Sets the precision and rounding mode to be used for BigDecimal operations. Usage: (with-precision 10 (/ 1M 3)) or: (with-precision 10 :rounding HALF_DOWN (/ 1M 3)) The rounding mode is one of CEILING, FLOOR, HALF_UP, HALF_DOWN, HALF_EVEN, UP, DOWN and UNNECESSARY; it defaults to HALF_UP...

    • print-tap-fail

      clojure.test.tap

      • (print-tap-fail msg)

      Prints a TAP 'not ok' line. msg is a string, with no line breaks

      0 examples · See also: clojure.test.tap/print-tap-pass
    • print-tap-pass

      clojure.test.tap

      • (print-tap-pass msg)

      Prints a TAP 'ok' line. msg is a string, with no line breaks

      0 examples · See also: clojure.test.tap/print-tap-fail
    • print-tap-plan

      clojure.test.tap

      • (print-tap-plan n)

      Prints a TAP plan line like '1..n'. n is the number of tests

      0 examples
    • PrintWriter-on

      clojure.core

      • (PrintWriter-on flush-fn close-fn)
      • (PrintWriter-on flush-fn close-fn autoflush?)

      implements java.io.PrintWriter given flush-fn, which will be called when .flush() is called, with a string built up since the last call to .flush(). if not nil, close-fn will be called with no arguments when .close is called. autoflush? determines if the PrintWriter will autoflush, false by de...

      1 example
    • construct-proxy

      clojure.core

      • (construct-proxy c & ctor-args)

      Takes a proxy class and any arguments for its superclass ctor and creates and returns an instance of the proxy.