Is there a difference in scala type bound notation direction, as in is [B <: A]
the same as [A >: B]
?
Is there a difference in scala type bound notation direction?
101 Views Asked by Caballero At
2
Is there a difference in scala type bound notation direction, as in is [B <: A]
the same as [A >: B]
?
B <: A
means thatB
has an upper-bound ofA
. Which means thatB
can be any type fromNothing
toA
in the type hierarchy.A >: B
means thatA
has a lower-bound ofB
, which means thatA
can be anything fromB
toAny
in the type hierarchy.In general, they do not mean the same thing. Each one imposes a bound on a different type parameter. This isn't variance notation either, these are type bounds.