This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Can't use ArrayBuffer ++ List

2 replies
mtopol
Joined: 2009-01-12,
User offline. Last seen 42 years 45 weeks ago.

If I write this:

val list = List("a")
val buf1 = new ArrayBuffer[String]
val buf2 = arraybuf ++ list

I get a compiler error on the last line:

error: erroneous reference to overloaded definition,
most specific definition is: method ++ in trait Buffer of type
(Iterable[String])scala.collection.mutable.Buffer[String],
yet alternative definition method ++ in class ArrayBuffer of type [B >:
String](Iterable[B])scala.collection.mutable.ArrayBuffer[B]
is defined in a subclass

What I really want to do is create an ArrayBuffer initialized to the
contents of a list:

val buf3 = new ArrayBuffer ++ list

but that fails for the same reason. Is there any other way to write an
expression whose result is an initialized ArrayBuffer?

I am currently on Scala 2.7.2 final.

extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: Can't use ArrayBuffer ++ List

On Sun, Feb 01, 2009 at 05:07:24AM -0800, mtopol wrote:
> If I write this:
>
> val list = List("a")
> val buf1 = new ArrayBuffer[String]
> val buf2 = arraybuf ++ list
>
> What I really want to do is create an ArrayBuffer initialized to the
> contents of a list:
>
> val buf3 = new ArrayBuffer ++ list

ArrayBuffer is mutable:

scala> val buf = new ArrayBuffer[String]
buf: scala.collection.mutable.ArrayBuffer[String] = ArrayBuffer()

scala> buf ++= List("a", "b")

scala> buf
res3: scala.collection.mutable.ArrayBuffer[String] = ArrayBuffer(a, b)

odersky
Joined: 2008-07-29,
User offline. Last seen 45 weeks 6 days ago.
Re: Can't use ArrayBuffer ++ List

On Sun, Feb 1, 2009 at 3:03 PM, Paul Phillips wrote:
> On Sun, Feb 01, 2009 at 05:07:24AM -0800, mtopol wrote:
>> If I write this:
>>
>> val list = List("a")
>> val buf1 = new ArrayBuffer[String]
>> val buf2 = arraybuf ++ list
>>
>> What I really want to do is create an ArrayBuffer initialized to the
>> contents of a list:
>>
>> val buf3 = new ArrayBuffer ++ list
>
I think it's a design glitch in the current libraries. I'll take care
it will be fixed in 2.8. For the moment, use ++=, as Paul suggests.

Cheers

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland