ClojureDocs

Search results for query: re

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

  • 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
  • re-matches

    clojure.core

    • (re-matches re s)

    Returns the match, if any, of string to pattern, using java.util.regex.Matcher.matches(). Uses re-groups to return the groups.

  • do-reflect

    clojure.reflect

    • (do-reflect reflector typeref)

    0 examples
  • tap-report

    clojure.test.tap

      0 examples
      • 0 examples
      • read+string

        clojure.core

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

        Like read, and taking the same args. stream must be a LineNumberingPushbackReader. Returns a vector containing the object read and the (whitespace-trimmed) string read.

        1 example
      • reset-vals!

        clojure.core

        • (reset-vals! atom newval)

        Sets the value of atom to newval. Returns [old new], the value of the atom before and after the reset.

        1 example · See also: clojure.core/swap-vals!
      • reversible?

        clojure.core

        • (reversible? coll)

        Returns true if coll implements Reversible

        1 example