ClojureDocs

Search results for query: ���� Albendazole And Ivermectin ��� www.Stromectol-Ivermectin.com ��� Where To Get Ivermectin For Dogs ���� Comfortis And Ivermectin . What Does Ivermectin Do

11 to 20 of 59 results. prev page | next page

  • get-exponent

    clojure.math

    • (get-exponent d)

    Returns the exponent of d. If d is ##NaN, ##Inf, ##-Inf => Double/MAX_EXPONENT + 1 If d is zero or subnormal => Double/MIN_EXPONENT - 1 See: https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html#getExponent-double-

    1 example
  • process-dom

    clojure.core.logic.fd

    • (process-dom x dom domp)

    If x is a var we update its domain. If it's an integer we check that it's a member of the given domain. dom is then new domain, it should have already been calculated from domp which was the previous domain.

    0 examples
  • do-reflect

    clojure.reflect

    • (do-reflect reflector typeref)

    0 examples
  • do-template

    clojure.template

    • (do-template argv expr & values)

    Repeatedly copies expr (in a do block) for each group of arguments in values. values are automatically partitioned by the number of arguments in argv, an argument vector as in defn. Example: (macroexpand '(do-template [x y] (+ y x) 2 4 3 5)) ;=> (do (+ 4 2) (+ 5 3))

    1 example · See also: clojure.template/apply-template
  • get-proxy-class

    clojure.core

    • (get-proxy-class & bases)

    Takes an optional single class followed by zero or more interfaces. If not supplied class defaults to Object. Creates an returns an instance of a proxy class derived from the supplied classes. The resulting value is cached and used for any subsequent requests for the same class set. Returns...

    1 example · See also: clojure.core/construct-proxy
  • unchecked-double

    clojure.core

    • (unchecked-double x)

    Coerce to double. Subject to rounding.

    1 example
  • merge-doms

    clojure.core.logic

    • (merge-doms s x doms)

    0 examples
  • update-dom

    clojure.core.logic

    • (update-dom s x dom f)
    • (update-dom s x dom f seenset)

    0 examples
  • dissoc-dom

    clojure.core.logic

    • (dissoc-dom x k)

    0 examples
  • do-report

    clojure.test

    • (do-report m)

    Add file and line information to a test result and call report. If you are writing a custom assert-expr method, call this function to pass test results to report.

    0 examples