- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
2.7 vs 2.8 gotcha
Tue, 2010-03-30, 20:10
I don't know if there's anyone keeping track of these, but a recent question reminded me of a difference on Scala 2.8, in case someone _is_ keeping track of them. :-)
A lot of collections/methods that used to ask for an A => Ordered[A] now ask for an Ordering[A]. It usually doesn't have any impact, but it might require change in places where A <% Ordered[A] is being used, as this implicit is not enough to satisfy the Ordering[A] that might be required on called methods/instantiated classes.
--
Daniel C. Sobral
I travel to the future all the time.
A lot of collections/methods that used to ask for an A => Ordered[A] now ask for an Ordering[A]. It usually doesn't have any impact, but it might require change in places where A <% Ordered[A] is being used, as this implicit is not enough to satisfy the Ordering[A] that might be required on called methods/instantiated classes.
--
Daniel C. Sobral
I travel to the future all the time.
Tue, 2010-03-30, 21:07
#2
Re: 2.7 vs 2.8 gotcha
Paul Phillips committed some bunnies in the form of -Xmigration (I think that's the option). They aren't exactly fluffy, though, but there is some hand-holding included.
But, mostly, it's rather hard to know what may cause difficulty for people without them telling us in first place. :-) Chicken and egg, thingy.
On Tue, Mar 30, 2010 at 4:37 PM, Viktor Klang <viktor.klang@gmail.com> wrote:
--
Daniel C. Sobral
I travel to the future all the time.
But, mostly, it's rather hard to know what may cause difficulty for people without them telling us in first place. :-) Chicken and egg, thingy.
On Tue, Mar 30, 2010 at 4:37 PM, Viktor Klang <viktor.klang@gmail.com> wrote:
I'd really love a Scala 2.7.7 homebrew-collection to 2.8.0 migration kit with fluffy bunnies and hand-holding.
On Tue, Mar 30, 2010 at 9:09 PM, Daniel Sobral <dcsobral@gmail.com> wrote:
I don't know if there's anyone keeping track of these, but a recent question reminded me of a difference on Scala 2.8, in case someone _is_ keeping track of them. :-)
A lot of collections/methods that used to ask for an A => Ordered[A] now ask for an Ordering[A]. It usually doesn't have any impact, but it might require change in places where A <% Ordered[A] is being used, as this implicit is not enough to satisfy the Ordering[A] that might be required on called methods/instantiated classes.
--
Daniel C. Sobral
I travel to the future all the time.
--
Viktor Klang
| "A complex system that works is invariably
| found to have evolved from a simple system
| that worked." - John Gall
Akka - the Actor Kernel: Akkasource.org
Twttr: twitter.com/viktorklang
--
Daniel C. Sobral
I travel to the future all the time.
Wed, 2010-03-31, 00:37
#3
Re: 2.7 vs 2.8 gotcha
Viktor Klang wrote:
> I'd really love a Scala 2.7.7 homebrew-collection to 2.8.0 migration kit
> with fluffy bunnies
Hi Victor,
Here's my homebrew migration kit.
Please accept this free voucher for all the fluffy bunnies in rural
Australia. http://en.wikipedia.org/wiki/Rabbits_in_Australia
Happy Easter,
Eric.
> *** Explicitly import from outer packages ***
>
> Suppose we have
> package a
> class B
>
> Change
> package a.c
> class D extends B
> to
> package a.c
> import a.B
> class D extends B
> or
> package a
> package c
> class D extends B
>
>
>
> *** Use fully qualified package name when importing from outer
package ***
>
> Suppose we have
> package a.b
> object O { val x = 1 }
>
> Change
> package a.b.c
> import b.O.x
>
> to
> package a.b.c
> import a.b.O.x
>
>
>
> *** When explicitly specifying type parameters in container method
calls, add new type parameters ***
>
> Change
> list.map[Int](f)
> to
> list.map[Int, List[Int]](f)
>
> Change
> map.transform[Value](g)
> to
> map.transform[Value, Map[Key, Value]](g)
>
>
>
> *** Create sorted map using Ordering instead of conversion to Ordered ***
>
> [scalac] found : (String) => Ordered[String]
> [scalac] required: Ordering[String]
> [scalac] TreeMap[String, Any](map.toList:
_*)(stringToCaseInsensitiveOrdered _)
>
>
>
> *** Import the implicit conversions that replace scala.collection.jcl ***
>
>
>
> *** Immutable Map .update becomes .updated ***
>
>
>
> *** Migrate from newly deprecated List methods -- elements remove
sort List.flatten(someList) List.fromString(someList, sep) List.make ***
> Use List methods diff iterator filterNot sortWith
someList.flatten someList.split(sep) List.fill
>
>
>
> *** Migrate from newly deprecated Map methods keys values ***
> Use Map methods keysIterator valuesIterator
>
>
>
>
>
>
> *** classpath when using scala.tools.nsc.Settings ***
>
> http://thread.gmane.org/gmane.comp.lang.scala/18245/focus=18247
> settings.classpath.value = System.getProperty("java.class.path")
>
>
>
> *** Avoid error: _ must follow method; cannot follow (Any) => Boolean ***
>
> Replace
> list.filter(that.f _)
> with
> list.filter(that f _)
> or
> list.filter(that.f(_))
>
>
>
>
> *** Migrate from deprecated Enumeration methods iterator map ***
> Use Enumeration methods values.iterator values.map
>
>
>
> *** Migrate from deprecated Iterator.fromValues(a, b, c, d) ***
> Use Iterator(a, b, c, d)
>
>
>
> *** Avoid deprecated type Collection ***
> Use Iterable instead
>
>
> *** Change initialisation order ***
>
> Suppose we have
> trait T {
> val v
> val w = v + v
> }
>
> Replace
> class C extends T {
> val v = "v"
> }
> with
> class C extends {
> val v = "v"
> } with T
>
>
> *** Avoid unneeded 'val' in for (val x <- ...) ***
>
>
>
> *** Avoid trailing commas ***
>
>
>
Wed, 2010-03-31, 01:47
#4
Re: Re: 2.7 vs 2.8 gotcha
Great stuff, though the "val" is older than 2.7. :-) Could you add it as an answer to http://stackoverflow.com/questions/1243794/what-are-the-biggest-differences-between-scala-2-8-and-scala-2-7?
By the way, keys and values are not deprecated anymore, I think.
On Tue, Mar 30, 2010 at 8:36 PM, Eric Willigers <ewilligers@gmail.com> wrote:
--
Daniel C. Sobral
I travel to the future all the time.
By the way, keys and values are not deprecated anymore, I think.
On Tue, Mar 30, 2010 at 8:36 PM, Eric Willigers <ewilligers@gmail.com> wrote:
Viktor Klang wrote:
I'd really love a Scala 2.7.7 homebrew-collection to 2.8.0 migration kit with fluffy bunnies
Hi Victor,
Here's my homebrew migration kit.
Please accept this free voucher for all the fluffy bunnies in rural Australia. http://en.wikipedia.org/wiki/Rabbits_in_Australia
Happy Easter,
Eric.
> *** Explicitly import from outer packages ***
>
> Suppose we have
> package a
> class B
>
> Change
> package a.c
> class D extends B
> to
> package a.c
> import a.B
> class D extends B
> or
> package a
> package c
> class D extends B
>
>
>
> *** Use fully qualified package name when importing from outer package ***
>
> Suppose we have
> package a.b
> object O { val x = 1 }
>
> Change
> package a.b.c
> import b.O.x
>
> to
> package a.b.c
> import a.b.O.x
>
>
>
> *** When explicitly specifying type parameters in container method calls, add new type parameters ***
>
> Change
> list.map[Int](f)
> to
> list.map[Int, List[Int]](f)
>
> Change
> map.transform[Value](g)
> to
> map.transform[Value, Map[Key, Value]](g)
>
>
>
> *** Create sorted map using Ordering instead of conversion to Ordered ***
>
> [scalac] found : (String) => Ordered[String]
> [scalac] required: Ordering[String]
> [scalac] TreeMap[String, Any](map.toList: _*)(stringToCaseInsensitiveOrdered _)
>
>
>
> *** Import the implicit conversions that replace scala.collection.jcl ***
>
>
>
> *** Immutable Map .update becomes .updated ***
>
>
>
> *** Migrate from newly deprecated List methods -- elements remove sort List.flatten(someList) List.fromString(someList, sep) List.make ***
> Use List methods diff iterator filterNot sortWith someList.flatten someList.split(sep) List.fill
>
>
>
> *** Migrate from newly deprecated Map methods keys values ***
> Use Map methods keysIterator valuesIterator
>
>
>
>
>
>
> *** classpath when using scala.tools.nsc.Settings ***
>
> http://thread.gmane.org/gmane.comp.lang.scala/18245/focus=18247
> settings.classpath.value = System.getProperty("java.class.path")
>
>
>
> *** Avoid error: _ must follow method; cannot follow (Any) => Boolean ***
>
> Replace
> list.filter(that.f _)
> with
> list.filter(that f _)
> or
> list.filter(that.f(_))
>
>
>
>
> *** Migrate from deprecated Enumeration methods iterator map ***
> Use Enumeration methods values.iterator values.map
>
>
>
> *** Migrate from deprecated Iterator.fromValues(a, b, c, d) ***
> Use Iterator(a, b, c, d)
>
>
>
> *** Avoid deprecated type Collection ***
> Use Iterable instead
>
>
> *** Change initialisation order ***
>
> Suppose we have
> trait T {
> val v
> val w = v + v
> }
>
> Replace
> class C extends T {
> val v = "v"
> }
> with
> class C extends {
> val v = "v"
> } with T
>
>
> *** Avoid unneeded 'val' in for (val x <- ...) ***
>
>
>
> *** Avoid trailing commas ***
>
>
>
--
Daniel C. Sobral
I travel to the future all the time.
Wed, 2010-03-31, 01:57
#5
Re: Re: 2.7 vs 2.8 gotcha
On Tue, Mar 30, 2010 at 4:36 PM, Eric Willigers <ewilligers@gmail.com> wrote:
You might find it easier/more succinct to specify the expected type.
list.map(f) : List[Int]
map.transform(g) : Map[Key, Value]
--j
> *** When explicitly specifying type parameters in container method calls, add new type parameters ***
You might find it easier/more succinct to specify the expected type.
> Change
> list.map[Int](f)
> to
> list.map[Int, List[Int]](f)
list.map(f) : List[Int]
> Change
> map.transform[Value](g)
> to
> map.transform[Value, Map[Key, Value]](g)
map.transform(g) : Map[Key, Value]
--j
On Tue, Mar 30, 2010 at 9:09 PM, Daniel Sobral <dcsobral@gmail.com> wrote:
--
Viktor Klang
| "A complex system that works is invariably
| found to have evolved from a simple system
| that worked." - John Gall
Akka - the Actor Kernel: Akkasource.org
Twttr: twitter.com/viktorklang