ClojureDocs

Search results for query: *map

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

  • 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

    • (map? x)

    Return true if x implements IPersistentMap

  • mapv

    clojure.core

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

    Returns a vector 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-colls a...

  • 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.async

    • (map> f ch)

    Deprecated - this function will be removed. Use transducer instead

    0 examples
  • map<

    clojure.core.async

    • (map< f ch)

    Deprecated - this function will be removed. Use transducer instead

    0 examples
  • 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
  • mapcat

    clojure.core

    • (mapcat f)
    • (mapcat f & colls)

    Returns the result of applying concat to the result of applying map to f and colls. Thus function f should return a collection. Returns a transducer when no collections are provided

  • mapcat

    clojure.core.reducers

    • (mapcat f)
    • (mapcat f coll)

    Applies f to every value in the reduction of coll, concatenating the result colls of (f val). Foldable.

    0 examples · See also: clojure.core.reducers/map
  • map-of

    clojure.spec.alpha

    • (map-of kpred vpred & opts)

    Returns a spec for a map whose keys satisfy kpred and vals satisfy vpred. Unlike 'every-kv', map-of will exhaustively conform every value. Same options as 'every', :kind defaults to map?, with the addition of: :conform-keys - conform keys as well as values (default false) See also - eve...

prev page | next page