by Andrew Beckett <andrewb@[EMAIL PROTECTED]
>
May 8, 2008 at 10:47 AM
S. Badel wrote, on 05/06/08 13:38:
>
>> rplacd(rplacd(nthcdr(i-1 lst) nthcdr(i+1 lst))
>
> woops, typo
>
> rplacd(nthcdr(i-1 lst) nthcdr(i+1 lst))
Also, you should consider whether a list is the right data structure if
you're
deleting stuff from it - especially if removing elements based on a
position in
the list as in Stéphane's example above.
If it's unordered, perhaps a hash (an "association table" in SKILL
terminology)
makes more sense - as created by makeTable. You can also remove() elements
from
tables.
Andrew.