Why is the + operator for List deprecated in Scala?
http://www.scala-lang.org/docu/files/api/scala/List.html#%2B%28B%29
|
Why is the + operator for List deprecated in Scala? http://www.scala-lang.org/docu/files/api/scala/List.html#%2B%28B%29 |
|||
|
|
|
Good question, so I looked it up in the book by Odersky et al. It says the following (hopefully it's not a copyright infringement to quote this here ;-)): Why not append to lists?Class As far as I understand FP, prepending to a list is much more common than appending, at least in pure functional languages. I can only assume that the designers of Scala added the |
|||||||||
|
|
It was deprecated in May 2008 in revision 15071, with the message:
I expect this was to avoid ambiguity with StringAdd#+. Compare the difference between 2.7.6 an 2.8.0 Beta below:
In 2.8, the method has been removed and you get:
UPDATE On the scala-user list, Martin Odersky notes:
oxbow_lakes adds - it took me a while to unpack this cryptic comment but I think the point is that it would violate the commutativity of types implied by the UPDATE Martin Odersky's clarification:
|
|||||||
|
|
It was not commutative and was particularly suboptimal on lists. Furthermore, behavior differs between mutable and immutable collectiones. On Scala 2.8, you have the following:
The mutable/immutable thing is not quite solved. A bunch of methods were deprecated as a first step, but they can't be changed or outright removed without a deprecation period first. |
|||||
|
|
If you follow this thread, you will see it is probably for performance issue.
|
|||
|
|