ClojureDocs

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

Search results for query: re

71 to 80 of 124 results. prev page | next page

  • read-string

    clojure.edn

    • (read-string s)
    • (read-string opts s)

    Reads one object from the string s. Returns nil when s is nil or empty. Reads data in the edn format (subset of Clojure data): http://edn-format.org opts is a map as per clojure.edn/read

  • make-reader

    clojure.java.io

    • (make-reader x opts)

    Creates a BufferedReader. See also IOFactory docs.

    0 examples
  • repl-caught

    clojure.main

    • (repl-caught e)

    Default :caught hook for repl

    0 examples
  • repl-prompt

    clojure.main

    • (repl-prompt)

    Default :prompt hook for repl

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

  • 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
  • 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
  • resolve-path

    clojure.tools.build.api

    • (resolve-path path)

    If path is absolute or root-path is nil then return path, otherwise resolve relative to *project-root*.

    0 examples