Clojure 1.11.0 release

442 · Rich Hickey · March 22, 2022, 4:27 p.m.
Clojure 1.11 provides new syntax for keyword argument invocation, namespace aliasing without loading, a new clojure.math namespace, and many additional bug fixes and enhancements. Keyword arguments are optional trailing variadic arguments of the form (f akey aval bkey bval …​​). Invoking functions with keyword arguments is convenient for people to write, but keyword args are not collections so they are hard to flow between functions. In Clojure 1.11, functions taking keyword arguments can n...