Scala多个泛型参数数据结构类型类实例

时间:2016-04-16 15:14:58

标签: scala scalaz7

我正在使用Scalaz,因为我喜欢标准库中Haskell类型类设置的许多方面。但这正是我目前的问题。我有一个通用数据结构,有两个通用参数:

case class Parser[T,A](f: T => (T,A))

在Haskell中,我会像这样实现Alternative类型类:

newtype Parser t a = Parser { runParser :: t -> (t,a) }

instance Alternative (Parser t) where
  ...

但是我如何在Scala中做同等的事情?据我所知,我不能做像

这样的事情
object Parser {
  implicit def ins_Alternative[T] = new Alternative[Parser[T]] {
    // ...
  }
}

有人知道怎么做吗? Thx提前!

更新

我发现了这个:

implicit def eitherMonad[L]: Traverse[Either[L, ?]] with MonadError[Either[L, ?], L] with BindRec[Either[L, ?]] with Cozip[Either[L, ?]] = 
  new Traverse[Either[L, ?]] with MonadError[Either[L, ?], L] with BindRec[Either[L, ?]] with Cozip[Either[L, ?]] {
    def bind[A, B](fa: Either[L, A])(f: A => Either[L, B]) = fa match {
      case Left(a)  => Left(a)
      case Right(b) => f(b)
    }
  // ...
}
Scalaz来源中的

https://github.com/scalaz/scalaz/blob/series/7.3.x/core/src/main/scala/scalaz/std/Either.scala)。

根据这个,我想我必须写一些类似

的东西
object Parser {
  implicit def ins_Alternative[T] = new Alternative[Parser[T, ?]] {
    // ...
  }
}

,由于类型?未知,因此无法编译。

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。

implicit def ins_Alternative[T] = new Alternative[({type x[a] = Parser[T, a]})#x] {
  override def empty[A]: Parser[T, A] = ???

  override def plus[A](a: Parser[T, A], b: => Parser[T, A]): Parser[T, A] = ???

  override def point[A](a: => A): Parser[T, A] = ???

  override def ap[A, B](fa: => Parser[T, A])(f: => Parser[T, (A) => B]): Parser[T, B] = ???
}