I want some implicit evidence that appears as follows:
def foo[A, B](implicit ev: ???[A, B]) = ev
foo[Int, Int] //○ (compiles)
foo[Any, Int] //× (fails)
foo[Seq[Int], Seq[Int]] //○
foo[Seq[Any], Seq[Int]] //○
foo[Seq[Int], List[Int]] //×
So two types must be of the same class, but their type parameters don't matter (just like ClassTag
.) How do you implement such function? Do you use macro?
Thank you!
My friend answered outside XD
run: