ClojureDocs

Search results for query: pr

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

  • -predc

    clojure.core.logic

    • (-predc x p)
    • (-predc x p pform)

    0 examples
  • prefers

    clojure.core

    • (prefers multifn)

    Given a multimethod, returns a map of preferred value -> set of other values

  • 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