オブジェクトにこのメソッドがありpackage
ます:
def extractLoop[@specialized T](x: Map[T, T]) = {
val whatever = x.head
val stop = whatever._1
def iteration(
acc: Seq[T] = Seq(whatever._1, whatever._2),
last: T = whatever._2): Seq[T] = {
val next = x(last)
if (next == stop) acc
else iteration(acc :+ next, next)
}
iteration()
}
しかし、私はまだ理解できません.なぜコンパイラ(私はバージョン2.9.2を持っています)が言うのtype T is unused or used in non-specializable positions.
ですか?