In Java I would write
void foo(final Set<? extends SomeClass> someObjects) { /* ... */ }
What do I write in Scala?
def foo(someObjects : Set[AnyRef[SomeClass])
But this doesn't work
|
|
|
I rarely find myself writing code like this any more. The reason is that, in your example
The variance annotation denotes you can only access the collection, not update it. It's highly probable that you could re-write the method as follows
That is, if you can only access elements in the set, it's unlikely that you need it to be a
Then you can pass a
The reason that scala's In fact, it's much more common that I now use
In this event; you could use:
|
||||
|
|
|
You can define the dependency by using a type bound:
Here |
|||
|
|
|
The literal translation for
is
or
If you are overriding some method in a Java class, prepend |
|||
|
|