ClojureDocs

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

Search results for query: pr

11 to 20 of 58 results. prev page | next page

  • prn-str

    clojure.core

    • (prn-str & xs)

    prn to a string, returning it

    3 examples · See also: clojure.core/prn, clojure.edn/read-string
  • promise

    clojure.core

    • (promise)

    Returns a promise object that can be read with deref/@, and set, once only, with deliver. Calls to deref/@ prior to delivery will block, unless the variant of deref with timeout is used. All subsequent derefs will return the same delivered value without blocking. See also - realized?.

  • println

    clojure.core

    • (println & more)

    Same as print followed by (newline)

  • project

    clojure.core.logic

    • (project [& vars] & goals)

    Extract the values bound to the specified logic vars. Non-relational.

    3 examples
  • project

    clojure.set

    • (project xrel ks)

    Returns a rel of the elements of xrel with only the keys in ks

    2 examples
  • process

    clojure.tools.build.api

    • (process params)

    Exec the command made from command-args, redirect out and err as directed, and return {:exit exit-code, :out captured-out, :err captured-err}. Options: :command-args - required, coll of string args :dir - directory to run the command from, default *project-root* :out - one of :inher...

    0 examples
  • prewalk

    clojure.walk

    • (prewalk f form)

    Like postwalk, but does pre-order traversal.

  • io-prepl

    clojure.core.server

    • (io-prepl & {:keys [valf], :or {valf pr-str}})

    prepl bound to *in* and *out*, suitable for use with e.g. server/repl (socket-repl). :ret and :tap vals will be processed by valf, a fn of one argument or a symbol naming same (default pr-str) Alpha, subject to change.

    0 examples
  • print-str

    clojure.core

    • (print-str & xs)

    print to a string, returning it

  • every-pred

    clojure.core

    • (every-pred p)
    • (every-pred p1 p2)
    • (every-pred p1 p2 p3)
    • (every-pred p1 p2 p3 & ps)

    Takes a set of predicates and returns a function f that returns true if all of its composing predicates return a logical true value against all of its arguments, else it returns false. Note that f is short-circuiting in that it will stop execution on the first argument that triggers a logical ...

    3 examples · See also: clojure.core/some-fn, clojure.core/every?