ClojureDocs

Search results for query: re

91 to 100 of 152 results. prev page | next page

  • rename-keys

    clojure.set

    • (rename-keys map kmap)

    Returns the map with the keys in kmap renamed to the vals in kmap

    5 examples · See also: clojure.set/rename
  • remove-watch

    clojure.core

    • (remove-watch reference key)

    Removes a watch (set by add-watch) from a reference

  • recover-vars

    clojure.core.logic

    • (recover-vars p)

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

    clojure.main

    • (report-error t & {:keys [target], :or {target "file"}, :as opts})

    Create and output an exception report for a Throwable to target. Options: :target - "file" (default), "stderr", "none" If file is specified but cannot be written, falls back to stderr.

    0 examples
  • type-reflect

    clojure.reflect

    • (type-reflect typeref & options)

    Alpha - subject to change. Reflect on a typeref, returning a map with :bases, :flags, and :members. In the discussion below, names are always Clojure symbols. :bases a set of names of the type's bases :flags a set of keywords naming the boolean attributes ...

    3 examples · See also: clojure.reflect/reflect
  • junit-report

    clojure.test.junit

      0 examples
      • 0 examples
      • restart-agent

        clojure.core

        • (restart-agent a new-state & options)

        When an agent is failed, changes the agent state to new-state and then un-fails the agent so that sends are allowed again. If a :clear-actions true option is given, any actions queued on the agent that were being held while it was failed will be discarded, otherwise those held actions will ...

      • resultset-seq

        clojure.core

        • (resultset-seq rs)

        Creates and returns a lazy sequence of structmaps corresponding to the rows in the java.sql.ResultSet rs

        1 example