1
的LUB我拿了最小上限一Seq
和Set
的:序列和集合
scala> import scala.reflect.runtime.universe._
import scala.reflect.runtime.universe._
scala> lub(List (typeOf[Seq[_]], typeOf[Set[_]]))
res12: reflect.runtime.universe.Type =
Iterable[Any] with Int with _$2 => Any forSome { type _$2 }
請幫助我瞭解輸出。我猜Iterable
是Set
和Seq
的最小父項。
但其餘的呢?