- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Broken implicit resolution
Fri, 2012-01-06, 10:26
Hi, somehow I broke some code of mine that uses the CanBuildFrom kind of pattern --- using implicit type classes to determine the behavior of a method as well as its return type based on the types passed to it.
The last line of the following code doesn't compile. If someone can change around the definition of CanFlatMapSignal (and the type arguments to flatMap) so that it works, I'd really appreciate it.
Thanks!!
The last line of the following code doesn't compile. If someone can change around the definition of CanFlatMapSignal (and the type arguments to flatMap) so that it works, I'd really appreciate it.
Thanks!!
trait DeltaSeq[+A] class Signal[+T] { def flatMap[U, S[_], S2[_]](f: T => S[U])(implicit canFlatMapSignal: CanFlatMapSignal[U, Signal, S[U], S2[U]]): S2[U] = canFlatMapSignal.flatMap(this, f) } class SeqSignal[+T] extends Signal[DeltaSeq[T]] class BufferSignal[T] extends SeqSignal[T] trait CanFlatMapSignal[U, -Parent[_], -FunRet, +Ret] { def flatMap[T](parent: Parent[T], f: T => FunRet): Ret } implicit def canFlatMapSignal[U, S <: Signal[U]]: CanFlatMapSignal[U, Signal, S, Signal[U]] = new CanFlatMapSignal[U, Signal, S, Signal[U]] { def flatMap[T](parent: Signal[T], f: T => S): Signal[U] = sys.error("todo") } val v = new BufferSignal[Int] v.flatMap(x => new BufferSignal[Int])