ClojureDocs

Clojure/Conj 2026 — Charlotte, NC — Sept 30 - Oct 2 Learn More & Get Tickets →

Search results for query: map @library clojure core

41 to 50 of 61 results. prev page | next page

    • 0 examples
      • 0 examples
        • 0 examples
        • map

          clojure.core

          • (map f)
          • (map f coll)
          • (map f c1 c2)
          • (map f c1 c2 c3)
          • (map f c1 c2 c3 & colls)

          Returns a lazy sequence consisting of the result of applying f to the set of first items of each coll, followed by applying f to the set of second items in each coll, until any one of the colls is exhausted. Any remaining items in other colls are ignored. Function f should accept number-of-...

        • map

          clojure.core.async

          • (map f chs)
          • (map f chs buf-or-n)

          Takes a function and a collection of source channels, and returns a channel which contains the values produced by applying f to the set of first items taken from each source channel, followed by applying f to the set of second items from each channel, until any one of the channels is closed,...

          1 example
        • map

          clojure.core.reducers

          • (map f)
          • (map f coll)

          Applies f to every value in the reduction of coll. Foldable.

          0 examples · See also: clojure.core.reducers/mapcat
          • 0 examples
            • 0 examples
              • 0 examples
                • 0 examples