Liking cljdoc? Tell your friends :D

bacure.util


arglists-valid?clj

(arglists-valid? arglists)
source

configurable-waitclj

(configurable-wait {:keys [wait-seconds] :or {wait-seconds 1} :as args})
source

defndcljmacro

(defnd name doc-string? attr-map? [params*] prepost-map? body)
(defnd name doc-string? attr-map? ([params*] prepost-map? body) + attr-map?)

Same as defn, but will automatically add an n-1 arity, where the first argument (local-device-id) can be omited. For example, given the following arguments, it will create a new arity : [local-device-id remote-device-id] -> [remote-device-id].

This is intended to make it easier to use the functions at the REPL when working with a single local-device.

Same as `defn`, but will automatically add an n-1 arity,
where the first argument (local-device-id) can be omited. For
example, given the following arguments, it will create a new arity :
[local-device-id remote-device-id] -> [remote-device-id].

This is intended to make it easier to use the functions at the REPL
when working with a single local-device.
sourceraw docstring

mapifycljmacro

(mapify & symbols)

Given some symbols, construct a map with the symbols as keys, and the value of the symbols as the map values. For example: (Let [aa 12] (mapify aa)) => {:aa 12}

Given some symbols, construct a map with the symbols as keys, and
the value of the symbols as the map values. For example:
(Let [aa 12]
   (mapify aa))
=> {:aa 12}
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close