- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Turning an array into a list
Sun, 2009-01-11, 22:10
Is there any built-in way to produce a list from an array? Or does one
have to construct the list element by element, generating many
intermediate lists that will be thrown out.
Thanks,
Ken
Sun, 2009-01-11, 22:37
#2
Re: Turning an array into a list
and if you mean a Java List...
Arrays.asList( scalaArray : _* )
Note: I believe you have to import java.util.Arrays or something like that.
-Josh
On Sun, Jan 11, 2009 at 4:11 PM, David Pollak <feeder.of.the.bears@gmail.com> wrote:
Arrays.asList( scalaArray : _* )
Note: I believe you have to import java.util.Arrays or something like that.
-Josh
On Sun, Jan 11, 2009 at 4:11 PM, David Pollak <feeder.of.the.bears@gmail.com> wrote:
You mean like:
Array(1,2,3).toList
? ;-)
On Sun, Jan 11, 2009 at 1:09 PM, Kenneth McDonald <kenneth.m.mcdonald@sbcglobal.net> wrote:
Is there any built-in way to produce a list from an array? Or does one have to construct the list element by element, generating many intermediate lists that will be thrown out.
Thanks,
Ken
--
Lift, the simply functional web framework http://liftweb.net
Collaborative Task Management http://much4.us
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp
Mon, 2009-01-12, 08:57
#3
Re: Turning an array into a list
On Sun, Jan 11, 2009 at 03:09:30PM -0600, Kenneth McDonald wrote:
> Is there any built-in way to produce a list from an array? Or does one
> have to construct the list element by element, generating many
> intermediate lists that will be thrown out.
Hi,
Just to clarify :
when you use a list to create another one (with a new head),
nothing is thrown out ! The first list IS the tail.
>
> Thanks,
> Ken
Array(1,2,3).toList
? ;-)
On Sun, Jan 11, 2009 at 1:09 PM, Kenneth McDonald <kenneth.m.mcdonald@sbcglobal.net> wrote:
--
Lift, the simply functional web framework http://liftweb.net
Collaborative Task Management http://much4.us
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp