1 to 10 of 21 results. prev page | next page
Returns a lazy sequence consisting of the result of applying f to 0 and the first item of coll, followed by applying f to 1 and the second item in coll, etc, until coll is exhausted. Thus function f should accept 2 arguments, index and item. Returns a stateful transducer when no collection i...
Return true if x is a map entry
Factory function for class clojure.reflect.Method, taking a map of keywords to field values.
Factory function for class clojure.reflect.Field, taking a map of keywords to field values.
Returns the map with the vals mapped to the keys.
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-...
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,...
Applies f to every value in the reduction of coll. Foldable.
Factory function for class clojure.core.logic.PMap, taking a map of keywords to field values.
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...