While comparing functional expressions in Clojure side-by-side with Rebol, I happened onto this expression from the examples of apply
used in combination with map
, at clojure-docs.org:
user=> (map #(apply max %) [[1 2 3] [4 5 6] [7 8 9]])
(3 6 9)
What is the most similar expression Rebol?