型クラスを定義する次のコードがあります。
trait Foo[T] {
def toFoo(x: T): String
}
trait Foos {
def toFoo[T](f: T => String): Foo[T] = new Foo[T] {
def toFoo(x: T): String = f(x)
}
}
object Foo extends Foos {
def toFoo[A: Foo](a: A) = implicitly[Foo[A]].toFoo(a)
implicit def AToFoo: Foo[A] = toFoo { c =>
"A"
}
implicit def BToFoo[T]: Foo[B] = toFoo { c =>
"B"
}
implicit def ListToFoo[T: Foo]: Foo[List[T]] = toFoo { c =>
c.map(toFoo(_)).
}
}
class A
class B extends A
今、私が持っている場合、私はの代わりtoFoo(List(new A, new B)
に取得します。タイプのクラスではなく、メソッドが使用されていることを確認するにはどうすればよいですか?List("A", "A")
List("A", "B")
BtoFoo
AToFoo
B