ClojureDocs

Search results for query: bound-fn

1 to 2 of 2 results. prev page | next page

  • bound-fn*

    clojure.core

    • (bound-fn* f)

    Returns a function, which will install the same bindings in effect as in the thread at the time bound-fn* was called and then call f with any given arguments. This may be used to define a helper function which runs on a different thread, but needs the same bindings in place.

    2 examples · See also: clojure.core/bound-fn
  • bound-fn

    clojure.core

    • (bound-fn & fntail)

    Returns a function defined by the given fntail, which will install the same bindings in effect as in the thread at the time bound-fn was called. This may be used to define a helper function which runs on a different thread, but needs the same bindings in place.

    1 example · See also: clojure.core/bound-fn*
prev page | next page