ClojureDocs

Search results for query: re

21 to 30 of 152 results. prev page | next page

  • -reify

    clojure.core.logic

    • (-reify s v)
    • (-reify s v r)

    0 examples
  • db-rel

    clojure.core.logic.pldb

    • (db-rel name & args)

    1 example
  • reduce

    clojure.core.reducers

    • (reduce f coll)
    • (reduce f init coll)

    Like core/reduce except: When init is not provided, (f) is used. Maps are reduced with reduce-kv

    2 examples · See also: clojure.core/reduce
  • remove

    clojure.core.reducers

    • (remove pred)
    • (remove pred coll)

    Removes values in the reduction of coll for which (pred val) returns logical true. Foldable.

    0 examples
  • reader

    clojure.java.io

    • (reader x & opts)

    Attempts to coerce its argument into an open java.io.Reader. Default implementations always return a java.io.BufferedReader. Default implementations are provided for Reader, BufferedReader, InputStream, File, URI, URL, Socket, byte arrays, character arrays, and String. If argument i...

  • rename

    clojure.set

    • (rename xrel kmap)

    Returns a rel of the maps in xrel with the keys in kmap renamed to the vals in kmap

    1 example · See also: clojure.set/rename-keys
  • regex?

    clojure.spec.alpha

    • (regex? x)

    returns x if x is a (clojure.spec) regex op, else logical false

    0 examples
  • report

    clojure.test

      Generic reporting function, may be overridden to plug in different report formats (e.g., TAP, JUnit). Assertions such as 'is' call 'report' to indicate results. The argument given to 'report' will be a map with a :type key. See the documentation at the top of test_is.clj for more info...

      0 examples
    • remove

      clojure.zip

      • (remove loc)

      Removes the node at loc, returning the loc that would have preceded it in a depth-first walk.

      2 examples
    • reverse

      clojure.core

      • (reverse coll)

      Returns a seq of the items in coll in reverse order. Not lazy.

      3 examples · See also: clojure.core/rseq