[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Keyword-style sequence functions
- To: Guy.Steele at CMU-10A
- Subject: Keyword-style sequence functions
- From: MOON at SCRC-TENEX
- Date: Fri, 04 Jun 1982 07:06:00 -0000
- Cc: common-lisp at SU-AI
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)