次のシナリオでは、名前によるパラメーターが関数との競合を引き起こします。
いくつかのシリアル化インフラストラクチャを考えると:
trait Tx {
def readSource[A](implicit ser: Serializer[A]) : Source[A] =
new Source[A] {
def get(implicit tx: Tx): A = ser.read(new In {})
}
}
trait In
trait Source[A] { def get(implicit tx: Tx): A }
trait Serializer[A] { def read(in: In)(implicit tx: Tx): A }
そして、そのシリアライザーと一緒のサンプルタイプ:
// needs recursive access to itself. for reasons
// beyond the scope of this questions, `self` must
// be a by-name parameter
class Transport(self: => Source[Transport])
// again: self is required to be by-name
def transportSer(self: => Source[Transport]) : Serializer[Transport] =
new Serializer[Transport] {
def read(in: In)(implicit tx: Tx): Transport = new Transport(self)
}
Hook
ここで、再帰的/相互接続を処理するというラッパーを想像してみてください。
trait Hook[A] {
def source: Source[A]
}
そしてそのシリアライザー:
def hookSer[A](peerSelf: Source[A] => Serializer[A]) : Serializer[Hook[A]] =
new Serializer[Hook[A]] {
def read(in: In)(implicit tx: Tx) : Hook[A] =
new Hook[A] with Serializer[A] {
val source: Source[A] = tx.readSource[A](this)
def read(in: In)(implicit tx: Tx) : A = peerSelf(source).read(in)
}
}
次に、次のことが失敗します。
val hs = hookSer[Transport](transportSer)
<console>:15: error: type mismatch;
found : => Source[Transport] => Serializer[Transport]
required: Source[Transport] => Serializer[Transport]
val hs = hookSer[Transport](transportSer)
^
名前によるパラメーターを関数に変更せずに(可能な限り)これを修正するにはどうすればよいですか?