From: Cory Spencer
Subject: Converting sequences to lists...
Date: 
Message-ID: <9vr0tf$nf6$1@nntp.itservices.ubc.ca>
Could anybody out there tell me What the preferred method for
converting a sequence to a list?  Currently I'm doing something like:

  (concatenate 'list my-sequence)

Although it works, it seems somehow not quite right...

-Cory
From: Mike McDonald
Subject: Re: Converting sequences to lists...
Date: 
Message-ID: <KY7U7.61428$m8.14188@news.webusenet.com>
In article <············@nntp.itservices.ubc.ca>,
	Cory Spencer <········@interchange.ubc.ca> writes:
> Could anybody out there tell me What the preferred method for
> converting a sequence to a list?  Currently I'm doing something like:
> 
>   (concatenate 'list my-sequence)
> 
> Although it works, it seems somehow not quite right...
> 
> -Cory
> 

=>(coerce (make-array 10 :initial-element 1) 'list)
(1 1 1 1 1 1 1 1 1 1)

  Mike McDonald
  ·······@mikemac.com