Description
scala/scala@a864ae0 (added between 2.13.0-M5 and 2.13.0-RC1) introduces a def empty()
on scala.collection.Iterable
.
Many (immutable) implementations of Iterable
, such as scala.collection.immutable.List
, have a companion object with a val empty
. On 2.13.0-M5 and earlier, Java users could use the List.empty()
static forwarder to get the empty List
instance. From 2.13.0-RC1, this static forwarder no longer exists, because the List
class itself now has a non-static empty()
method inherited from Iterable
.
According to the commit message the change was intended to "facilitate the switch to dotty's for comprehensions" - I don't know anything about that, so it might well be that the change is inevitable or worth it for that reason - I just wanted to flag this consequence that might not have been intentional.
What would be the new way for a Java user to get easy access to an empty instance of such an immutable collection?