ClojureDocs

Search results for query: pr

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

  • print-str

    clojure.core

    • (print-str & xs)

    print to a string, returning it

  • print-ctor

    clojure.core

    • (print-ctor o print-args w)

  • proxy-name

    clojure.core

    • (proxy-name super interfaces)

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