Runs the supplied procedure (via reduce), for purposes of side effects, on successive items in the collection. Returns nil
(run! prn (range 5)) ; 0 ; 1 ; 2 ; 3 ; 4 ; returns nil ; compared to mapv (mapv prn (range 5)) ; 0 ; 1 ; 2 ; 3 ; 4 ; returns [nil nil nil nil nil]
(run! #(http-out-create-person! %) [{:name "alex" :country :peru} {:name "eddu" :country :peru}]) ; (http-out-create-person! {:name "alex" :country :peru}) ; (http-out-create-person! {:name "eddu" :country :peru}) ; nil
Repeatedly executes body (presumably for side-effects) with bindings and filtering as provided by ...
Returns a lazy sequence consisting of the result of applying f to the set of first items of each c...
Returns a vector consisting of the result of applying f to the set of first items of each coll, fo...
run!