Hacker News new | ask | show | jobs
by masklinn 3794 days ago
> I know map, of course, yet clojure (or LISPs in general) is the only language where it is variadic.

According to Wikipedia `map` is also variadic in in D, in J, in Mathematica, in Prolog (and logtalk), in Python and in R (to an extent, `lapply` is not variadic but `mapply` can take 2+ sequences).

Variadic map is by no means limited to lisps.