ClojureDocs

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

Search results for query: re

51 to 60 of 124 results. prev page | next page

  • repl-init

    clojure.core.server

    • (repl-init)

    Initialize repl in user namespace and make standard repl requires.

    0 examples
  • repl-read

    clojure.core.server

    • (repl-read request-prompt request-exit)

    Enhanced :read hook for repl supporting :repl/quit.

    0 examples
  • repl-read

    clojure.main

    • (repl-read request-prompt request-exit)

    Default :read hook for repl. Reads from *in* which must either be an instance of LineNumberingPushbackReader or duplicate its behavior of both supporting .unread and collapsing all of CR, LF, and CRLF into a single \newline. repl-read: - skips whitespace, then - returns request-promp...

    0 examples
  • do-report

    clojure.test

    • (do-report m)

    Add file and line information to a test result and call report. If you are writing a custom assert-expr method, call this function to pass test results to report.

    0 examples
  • remove-tap

    clojure.core

    • (remove-tap f)

    Remove f from the tap set.

    0 examples · See also: clojure.core/tap>, clojure.core/add-tap
  • repeatedly

    clojure.core

    • (repeatedly f)
    • (repeatedly n f)

    Takes a function of no args, presumably with side effects, and returns an infinite (or length n if supplied) lazy sequence of calls to it

  • re-pattern

    clojure.core

    • (re-pattern s)

    Returns an instance of java.util.regex.Pattern, for use, e.g. in re-matcher.

  • ns-resolve

    clojure.core

    • (ns-resolve ns sym)
    • (ns-resolve ns env sym)

    Returns the var or Class to which a symbol will be resolved in the namespace (unless found in the environment), else nil. Note that if the symbol is fully qualified, the var/Class to which it resolves need not be present in the namespace.

    3 examples · See also: clojure.core/resolve
  • re-matcher

    clojure.core

    • (re-matcher re s)

    Returns an instance of java.util.regex.Matcher, for use, e.g. in re-find.

    2 examples · See also: clojure.core/re-find
  • reductions

    clojure.core

    • (reductions f coll)
    • (reductions f init coll)

    Returns a lazy seq of the intermediate values of the reduction (as per reduce) of coll by f, starting with init.

    4 examples · See also: clojure.core/reduce, clojure.core/reduced