In Effective Java, Joshua Bloch discusses the principle of PECS (Producer-Extends, Consumer-Super).
My understanding of this is that to increase API flexibility, the input (a collection that produces) should be made covariant and the output (collection that consumes) should be contravariant.
A function that implements this principle can have the following signature:
private static void func( ArrayList<? extends Object> input, ArrayList<? super Integer> output)
However, in Scala, the Function1 trait has the following signature:
trait Function1[-T1, +R] extends AnyRef
T1 (the input type) is contravariant while the R (output type) is covariant.
Is my understanding correct? If so, why is PECS not applied in Scala's Function1 trait?