[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Keyword-style sequence functions



I'll take the keyword-style ones, as long as this line of your message
    (remove-if '(1 2 4 1 3 4 5) :count 1 :from-end t :test #'evenp)	=> (1 2 4 1 3 5)
is really a typo for
    (remove-if #'evenp '(1 2 4 1 3 4 5) ':count 1 ':from-end t)	=> (1 2 4 1 3 5)