ClojureDocs

Search results for query: pr

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

  • print-method

    clojure.core

      2 examples · See also: clojure.core/print-dup
    • print-simple

      clojure.core

      • (print-simple o w)

      1 example
    • update-proxy

      clojure.core

      • (update-proxy proxy mappings)

      Takes a proxy instance and a map of strings (which must correspond to methods of the proxy superclass/superinterfaces) to fns (which must take arguments matching the corresponding method, plus an additional (explicit) first arg corresponding to this, and updates (via assoc) the proxy's fn ma...

      1 example · See also: clojure.core/init-proxy
    • promise-chan

      clojure.core.async

      • (promise-chan)
      • (promise-chan xform)
      • (promise-chan xform ex-handler)

      Creates a promise channel with an optional transducer, and an optional exception-handler. A promise channel can take exactly one value that consumers will receive. Once full, puts complete but val is dropped (no transfer). Consumers will block until either a value is placed in the channel or t...

      1 example · See also: clojure.core.async/chan
    • remote-prepl

      clojure.core.server

      • (remote-prepl host port in-reader out-fn & {:keys [valf readf], :or {valf read-string, readf (fn* [p1__9081# p2__9082#] (read p1__9081# false p2__9082#))}})

      Implements a prepl on in-reader and out-fn by forwarding to a remote [io-]prepl over a socket. Messages will be read by readf, a fn of a LineNumberingPushbackReader and EOF value or a symbol naming same (default #(read %1 false %2)), :ret and :tap vals will be processed by valf, a fn of one...

      0 examples
    • 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

    • list-provider

      clojure.inspector

        0 examples
      • *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