ClojureDocs

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

Search results for query: pr

21 to 30 of 58 results. prev page | next page

  • init-proxy

    clojure.core

    • (init-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 sets the proxy's fn map. Returns the...

  • println-str

    clojure.core

    • (println-str & xs)

    println to a string, returning it

  • proxy-super

    clojure.core

    • (proxy-super meth & args)

    Use to call a superclass method in the body of a proxy method. Note, expansion captures 'this

    2 examples · See also: clojure.core/proxy
  • process-dom

    clojure.core.logic.fd

    • (process-dom x dom domp)

    If x is a var we update its domain. If it's an integer we check that it's a member of the given domain. dom is then new domain, it should have already been calculated from domp which was the previous domain.

    0 examples
  • repl-prompt

    clojure.main

    • (repl-prompt)

    Default :prompt hook for repl

    0 examples
  • print-table

    clojure.pprint

    • (print-table ks rows)
    • (print-table rows)

    Prints a collection of maps in a textual table. Prints table headings ks, and then a line of output for each row, corresponding to the keys in ks. If ks are not specified, use the keys of the first item in rows.

  • git-process

    clojure.tools.build.api

    • (git-process params)

    Run git process in the specified dir using git-command with git-args (which should not start with "git"). git-args may either be a string (split on whitespace) or a vector of strings. By default, stdout is captured, trimmed, and returned. Options: :dir - dir to invoke this command from, d...

    0 examples
  • 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__9123# p2__9124#] (read p1__9123# false p2__9124#))}})

    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