ClojureDocs

Search results for query: re

141 to 150 of 152 results. prev page | next page

  • default-data-readers

    clojure.core

      Default map of data reader functions provided by Clojure. May be overridden by binding *data-readers*.

      1 example
    • resolve-storable-dom

      clojure.core.logic.fd

      • (resolve-storable-dom a x dom domp)

      0 examples
    • re-quote-replacement

      clojure.string

      • (re-quote-replacement replacement)

      Given a replacement string that you wish to be a literal replacement for a pattern match in replace or replace-first, do the necessary escaping of special characters in the replacement.

      2 examples · See also: clojure.string/replace
    • release-pending-sends

      clojure.core

      • (release-pending-sends)

      Normally, actions sent directly or indirectly during another action are held until the action completes (changes the agent's state). This function can be used to dispatch any pending sent actions immediately. This has no impact on actions sent during a transaction, which are still held until...

      1 example
    • read-instant-calendar

      clojure.instant

      • (read-instant-calendar cs)

      To read an instant as a java.util.Calendar, bind *data-readers* to a map with this var as the value for the 'inst key. Calendar preserves the timezone offset.

      0 examples
      • 0 examples
      • recover-vars-from-term

        clojure.core.logic

        • (recover-vars-from-term x)

        0 examples
      • read-instant-timestamp

        clojure.instant

        • (read-instant-timestamp cs)

        To read an instant as a java.sql.Timestamp, bind *data-readers* to a map with this var as the value for the 'inst key. Timestamp preserves fractional seconds with nanosecond precision. The timezone offset will be used to convert into UTC.

        1 example · See also: clojure.instant/read-instant-date
      • unchecked-remainder-int

        clojure.core

        • (unchecked-remainder-int x y)

        Returns the remainder of division of x by y, both int. Note - uses a primitive operator subject to truncation.

        0 examples
      • *default-data-reader-fn*

        clojure.core

          When no data reader is found for a tag and *default-data-reader-fn* is non-nil, it will be called with two arguments, the tag and the value. If *default-data-reader-fn* is nil (the default), an exception will be thrown for the unknown tag.