ClojureDocs

Search results for query: re

111 to 120 of 158 results. prev page | next page

  • -reset-methods

    clojure.core

    • (-reset-methods protocol)

    0 examples
  • stream-reduce!

    clojure.core

    • (stream-reduce! f s)
    • (stream-reduce! f init s)

    Works like reduce but takes a java.util.stream.BaseStream as its source. Honors 'reduced', is a terminal operation on the stream

    0 examples
  • *suppress-read*

    clojure.core

      0 examples
    • ensure-reduced

      clojure.core

      • (ensure-reduced x)

      If x is already reduced?, returns it, else returns (reduced x)

    • with-redefs-fn

      clojure.core

      • (with-redefs-fn binding-map func)

      Temporarily redefines Vars during a call to func. Each val of binding-map will replace the root value of its key which must be a Var. After func is called with no args, the root values of all the Vars will be set back to their old values. These temporary changes will be visible in all thr...

      3 examples · See also: clojure.core/with-redefs
    • db-retractions

      clojure.core.logic.pldb

      • (db-retractions base-db & retractions)

      0 examples
    • repl-exception

      clojure.main

      • (repl-exception throwable)

      Returns the root cause of throwables

      0 examples
    • IEEE-remainder

      clojure.math

      • (IEEE-remainder dividend divisor)

      Returns the remainder per IEEE 754 such that remainder = dividend - divisor * n where n is the integer closest to the exact value of dividend / divisor. If two integers are equally close, then n is the even one. If the remainder is zero, sign will match dividend. If dividend or divisor i...

      2 examples · See also: clojure.core/mod, clojure.core/rem
    • git-count-revs

      clojure.tools.build.api

      • (git-count-revs {:keys [dir git-command path], :or {git-command "git"}, :as params})

      Shells out to git and returns count of commits on this branch: git rev-list HEAD --count Options: :dir - dir to invoke this command from, default = current directory :git-command - git command to use, default = "git" :path - path to count commits for relative to dir

      0 examples
    • ref-min-history

      clojure.core

      • (ref-min-history ref)
      • (ref-min-history ref n)

      Gets the min-history of a ref, or sets it and returns the ref