Re: More filter examples

2016-11-04 Thread Alexander Burger
Hi Jon,

> I think there should be an example in the docs, showing the use of 'filter' 
> with more than one list. Here are my two suggestions:
> 
> (filter < (2 9 3 8 4 7) (5 4 3 9 9 5))
> -> (2 8 4)
> 
> (filter and (1 NIL 3 NIL 5) (2 3 4 5 6) (7 8 NIL 1 1))
> -> (?1 5)

Right, thanks! I added them.

♪♫ Alex
-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


More filter examples

2016-11-03 Thread Jon Kleiser
Hi,


I think there should be an example in the docs, showing the use of 'filter' 
with more than one list. Here are my two suggestions:


(filter < (2 9 3 8 4 7) (5 4 3 9 9 5))

-> (2 8 4)


(filter and (1 NIL 3 NIL 5) (2 3 4 5 6) (7 8 NIL 1 1))

-> (?1 5)


/Jon