ClojureDocs

Search results for query: for

1 to 10 of 13 results. prev page | next page

  • for

    clojure.core

    • (for seq-exprs body-expr)

    List comprehension. Takes a vector of one or more binding-form/collection-expr pairs, each followed by zero or more modifiers, and yields a lazy sequence of evaluations of expr. Collections are iterated in a nested fashion, rightmost fastest, and nested coll-exprs can refer to bindings c...

  • form

    clojure.spec.alpha

    • (form spec)

    returns the spec as data

    0 examples
  • force

    clojure.core

    • (force x)

    If x is a Delay, returns the (possibly cached) value of its expression, else returns x

    3 examples · See also: clojure.core/delay
  • format

    clojure.core

    • (format fmt & args)

    Formats a string using java.lang.String.format, see java.util.Formatter for format string syntax

  • eq-form

    clojure.core.logic.fd

    • (eq-form form)

    0 examples
  • force-ans

    clojure.core.logic

    • (force-ans x)

    0 examples
  • formatter

    clojure.pprint

    • (formatter format-in)

    Makes a function which can directly run format-in. The function is fn [stream & args] ... and returns nil unless the stream is nil (meaning output to a string) in which case it returns the resulting string. format-in can be either a control string or a previously compiled format.

  • cl-format

    clojure.pprint

    • (cl-format writer format-in & args)

    An implementation of a Common Lisp compatible format function. cl-format formats its arguments to an output stream or string based on the format control string given. It supports sophisticated formatting of structured data. Writer is an instance of java.io.Writer, true to output to *out* or nil to...

    7 examples · See also: clojure.core/printf, clojure.core/format
  • await-for

    clojure.core

    • (await-for timeout-ms & agents)

    Blocks the current thread until all actions dispatched thus far (from this thread or agent) to the agents have occurred, or the timeout (in milliseconds) has elapsed. Returns logical false if returning due to timeout, logical true otherwise.

    1 example · See also: clojure.core/await
  • facts-for

    clojure.core.logic.pldb

    • (facts-for dbs kname)

    0 examples
prev page | next page