On 23 Nov., 01:23, Rich Hickey <[EMAIL PROTECTED]> wrote: > On Nov 22, 4:59 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > wrote:
> I still don't understand your expectation here. If the filter does any > filtering, it won't return everything in the vector, so the new result > will have fewer items. Do you want a vector with fewer items? Then > you'll have a new vector. As I understand he wants this: (conj (map inc [10 20 30]) 7) ==> [11 21 31 7] and not: (conj (map inc [10 20 30]) 7) ==> (7 11 21 31) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---