ClojureDocs

Search results for query: re

41 to 50 of 152 results. prev page | next page

  • rem-dom

    clojure.core.logic

    • (rem-dom s x dom)
    • (rem-dom s x dom seenset)

    0 examples
  • rel-key

    clojure.core.logic.pldb

    • (rel-key rel)

    0 examples
  • reducer

    clojure.core.reducers

    • (reducer coll xf)

    Given a reducible collection, and a transformation function xf, returns a reducible collection, where any supplied reducing fn will be transformed by xf. xf is a function of reducing fn to reducing fn.

    0 examples
  • reflect

    clojure.reflect

    • (reflect obj & options)

    Alpha - subject to change. Reflect on the type of obj (or obj itself if obj is a class). Return value and options are the same as for type-reflect.

  • reverse

    clojure.string

    • (reverse s)

    Returns s with its characters reversed.

    2 examples
  • replace

    clojure.string

    • (replace s match replacement)

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

  • replace

    clojure.zip

    • (replace loc node)

    Replaces the node at this loc, without moving

    1 example · See also: clojure.zip/edit
  • reduced?

    clojure.core

    • (reduced? x)

    Returns true if x is the result of a call to reduced

  • rem-attr

    clojure.core.logic

    • (rem-attr s x attr)

    0 examples
  • read-csv

    clojure.data.csv

    • (read-csv input & options)

    Reads CSV-data from input (String or java.io.Reader) into a lazy sequence of vectors. Valid options are :separator (default \,) :quote (default \")

    0 examples