On Thu, Oct 16, 2008 at 3:26 PM, Paul Stadig <[EMAIL PROTECTED]> wrote: > > Something like (filter #(identity %) coll) works, but would it be possible > to add a 'squeeze or 'compact function so we could do something like (apply > max (compact coll))?
I like how few functions clojure has built in (compared to say common lisp). It think this is partly achieved through arity overloading, but also careful choices about what to include based on how easy it is to get what you need through composition. Is it really worth documenting and making everyone learn what "compact" means, so that you can say: (compact coll) instead of: (filter identity coll) ? --Chouser --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---