ClojureDocs

Search results for query: re

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

  • resource

    clojure.java.io

    • (resource n)
    • (resource n loader)

    Returns the URL for a named resource. Use the context class loader if no loader is specified.

  • registry

    clojure.spec.alpha

    • (registry)

    returns the registry map, prefer 'get-spec' to lookup a spec by name

    0 examples
  • rep+impl

    clojure.spec.alpha

    • (rep+impl form p)

    Do not call this directly, use '+'

    0 examples · See also: clojure.spec.alpha/+
  • rep-impl

    clojure.spec.alpha

    • (rep-impl form p)

    Do not call this directly, use '*'

    0 examples
  • re-groups

    clojure.core

    • (re-groups m)

    Returns the groups from the most recent match/find. If there are no nested groups, returns a string of the entire match. If there are nested groups, returns a vector of the groups, the first element being the entire match.

  • remove-ns

    clojure.core

    • (remove-ns sym)

    Removes the namespace named by the symbol. Use with caution. Cannot be used to remove the clojure namespace.

  • ns-refers

    clojure.core

    • (ns-refers ns)

    Returns a map of the refer mappings for the namespace.

    1 example · See also: clojure.core/ns-map
  • reduce-kv

    clojure.core

    • (reduce-kv f init coll)

    Reduces an associative collection. f should be a function of 3 arguments. Returns the result of applying f to init, the first key and the first value in coll, then applying f to that result and the 2nd key and value, etc. If coll contains no entries, returns init and f is not called. Note th...

    10 examples · See also: clojure.core/reduce, clojure.core/reduced
  • read-line

    clojure.core

    • (read-line)

    Reads the next line from stream that is the current value of *in* .

    4 examples · See also: clojure.core/flush
  • replicate

    clojure.core

    • (replicate n x)

    DEPRECATED: Use 'repeat' instead. Returns a lazy seq of n xs.

    1 example · See also: clojure.core/repeat