鉴于以下trait
(来自此有用的shapeless talk):
scala> trait NatT[F[_], G[_]] { def apply[T](f: F[T]): G[T] }
warning: there were two feature warnings; re-run with -feature for details
defined trait NatT
我认为这意味着NatT
接受两个更高级别的参数:F
和G
。
通过这个假设,我尝试创建一个F和G类型为Option
的实例:
scala> case object Maybe extends NatT[Option, Option] {
| override def apply(f: Option[Int]) = f
| }
<console>:8: error: object creation impossible, since method apply in trait NatT of type [T](f: Option[T])Option[T] is not de
fined
case object Maybe extends NatT[Option, Option] {
^
<console>:9: error: method apply overrides nothing.
Note: the super classes of object Maybe contain the following, non final members named apply:
def apply[T](f: Option[T]): Option[T]
override def apply(f: Option[Int]) = f
^
如何修复此Maybe
实例的尝试?
答案 0 :(得分:6)
您的apply
方法缺少type参数。就这么简单。
case object Maybe extends NatT[Option, Option] {
def apply[A](f: Option[A]): Option[A] = f
}
您在没有类型参数的情况下定义apply
的尝试被视为一种不同的方法,因此apply
似乎未实现。鉴于F
和G
应该是更高级的,尝试将它们修复为Option[Int]
并没有意义。