ClojureDocs

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

Search results for query: re

81 to 90 of 124 results. prev page | next page

    • 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
    • *data-readers*

      clojure.core

        Map from reader tag symbols to data reader Vars. When Clojure starts, it searches for files named 'data_readers.clj' and 'data_readers.cljc' at the root of the classpath. Each such file must contain a literal map of symbols, like this: {foo/bar my.project.foo/bar foo/baz my.proj...

        1 example · See also: clojure.core/print-method
      • remove-method

        clojure.core

        • (remove-method multifn dispatch-val)

        Removes the method of multimethod associated with dispatch-value.

      • refer-clojure

        clojure.core

        • (refer-clojure & filters)

        Same as (refer 'clojure.core )

        2 examples · See also: clojure.core/refer
      • repl-requires

        clojure.main

          A sequence of lib specs that are applied to `require` by default when a new command-line REPL is started.

          0 examples
        • resolve-class

          clojure.reflect

          • (resolve-class this name)

          Given a class name, return that typeref's class bytes as an InputStream.

          2 examples
        • replace-first

          clojure.string

          • (replace-first s match replacement)

          Replaces the first instance of match with replacement in s. match/replacement can be: char / char string / string pattern / (string or function of match). See also replace. The replacement is literal (i.e. none of its characters are treated specially) for all cases above exc...

        • stream-reduce!

          clojure.core

          • (stream-reduce! f s)
          • (stream-reduce! f init s)

          Works like reduce but takes a java.util.stream.BaseStream as its source. Honors 'reduced', is a terminal operation on the stream

          0 examples