ClojureDocs

Search results for query: re

1 to 10 of 152 results. prev page | next page

  • ref

    clojure.core

    • (ref x)
    • (ref x & options)

    Creates and returns a Ref with an initial value of x and zero or more options (in any order): :meta metadata-map :validator validate-fn :min-history (default 0) :max-history (default 10) If metadata-map is supplied, it will become the metadata on the ref. validate-fn must be nil or...

  • rem

    clojure.core

    • (rem num div)

    remainder of dividing numerator by denominator.

    2 examples · See also: clojure.core/quot, clojure.core/mod
  • rest

    clojure.core

    • (rest coll)

    Returns a possibly empty seq of the items after the first. Calls seq on its argument.

  • read

    clojure.core

    • (read)
    • (read stream)
    • (read stream eof-error? eof-value)
    • (read stream eof-error? eof-value recursive?)
    • (read opts stream)

    Reads the next object from stream, which must be an instance of java.io.PushbackReader or some derivee. stream defaults to the current value of *in*. Opts is a persistent map with valid keys: :read-cond - :allow to process reader conditionals, or :preserve to keep all br...

  • repl

    clojure.core.server

    • (repl)

    REPL with predefined hooks for attachable socket server.

    0 examples
  • read

    clojure.edn

    • (read)
    • (read stream)
    • (read opts stream)

    Reads the next object from stream, which must be an instance of java.io.PushbackReader or some derivee. stream defaults to the current value of *in*. Reads data in the edn format (subset of Clojure data): http://edn-format.org opts is a map that can include the following keys: :eof - ...

    4 examples · See also: clojure.edn/read-string
  • repl

    clojure.main

    • (repl & options)

    Generic, reusable, read-eval-print loop. By default, reads from *in*, writes to *out*, and prints exception summaries to *err*. If you use the default :read hook, *in* must either be an instance of LineNumberingPushbackReader or duplicate its behavior of both supporting .unread and collapsin...

    1 example
  • recur

    clojure.core

      Evaluates the exprs in order, then, in parallel, rebinds the bindings of the recursion point to the values of the exprs. See http://clojure.org/special_forms for more information.

    • refer

      clojure.core

      • (refer ns-sym & filters)

      refers to all public vars of ns, subject to filters. filters can include at most one each of: :exclude list-of-symbols :only list-of-symbols :rename map-of-fromsymbol-tosymbol For each public interned var in the namespace named by the symbol, adds a mapping from the name of the var to ...

    • reify

      clojure.core

      • (reify & opts+specs)

      reify creates an object implementing a protocol or interface. reify is a macro with the following structure: (reify options* specs*) Currently there are no options. Each spec consists of the protocol or interface name followed by zero or more method bodies: protocol-or-interface-or-...

      8 examples · See also: clojure.core/proxy
    prev page | next page