> val foo: PartialFunction[String, Unit] = { case i: String => }
foo: PartialFunction[String,Unit] = <function1>
> val bar: PartialFunction[Int, Unit] = { case i: Int => }
bar: PartialFunction[Int,Unit] = <function1>
> foo orElse bar
PartialFunction[String with Int,Unit] = <function1>
What is String with Int?
. I don't think that's even possible.
> (foo orElse bar)(new String with Int)
error: illegal inheritance from final class String
(foo orElse bar)(new String with Int)
^
error: class Int needs to be a trait to be mixed in
(foo orElse bar)(new String with Int)
^
Shouldn't it be PartialFunction[Nothing,Unit]
?
It's an intersection type. I.e. a value of this type must be an
Int
and aString
simultaneously.Yes, this is an uninhabited type. However, in general if you replace
Int
andString
with some typesA
andB
, you'll getPartialFunction[A with B, Unit]
and the compiler doesn't have a special case for this.