【问题标题】:Enrich-my-library by extending TraversableLike with own methods通过使用自己的方法扩展 TraversableLike 来丰富我的库
【发布时间】:2011-04-11 19:48:38
【问题描述】:

我尝试用自己的方法扩展 TraversableLike,但失败了。

首先,看看我想要实现什么:

class RichList[A](steps: List[A]) {
  def step(f: (A, A) => A): List[A] = {
    def loop(ret: List[A], steps: List[A]): List[A] = steps match {
      case _ :: Nil => ret.reverse.tail
      case _ => loop(f(steps.tail.head, steps.head) :: ret, steps.tail)
    }
    loop(List(steps.head), steps)
  }
}
implicit def listToRichList[A](l: List[A]) = new RichList(l)

val f = (n: Int) => n * (2*n - 1)
val fs = (1 to 10) map f
fs.toList step (_ - _)

这段代码运行良好,它计算出列表元素之间的差异。但是我想要这样的代码可以与SeqSet 等一起使用,而不仅仅是List

我试过这个:

class RichT[A, CC[X] <: TraversableLike[X, CC[X]]](steps: CC[A]) {
  def step(f: (A, A) => A): CC[A] = {
    def loop(ret: CC[A], steps: CC[A]): CC[A] =
      if (steps.size > 1) loop(ret ++ f(steps.tail.head, steps.head), steps.tail)
      else ret.tail
    loop(CC(steps.head), steps)
  }
}
implicit def tToRichT[A, CC[X] <: TraversableLike[X, CC[X]]](t: CC[A]) = new RichT(t)

有几个错误。隐式转换和++-method 都可以工作。另外,我不知道如何创建新类型 CC - 请参阅循环调用。

【问题讨论】:

标签: scala enrich-my-library


【解决方案1】:

根据 Rex 的评论,我编写了以下代码:

class RichIter[A, C[A] <: Iterable[A]](ca: C[A]) {
  import scala.collection.generic.CanBuildFrom
  def step(f: (A, A) => A)(implicit cbfc: CanBuildFrom[C[A], A, C[A]]): C[A] = {
    val iter = ca.iterator
    val as = cbfc()

    if (iter.hasNext) {
      var olda = iter.next
      as += olda
      while (iter.hasNext) {
        val a = iter.next
        as += f(a, olda)
        olda = a
      }
    }
    as.result
  }
}
implicit def iterToRichIter[A, C[A] <: Iterable[A]](ca: C[A]) = new RichIter[A, C](ca)

val f = (n: Int) => n * (2*n - 1)
val fs = (1 to 10) map f
fs step (_ - _)

这按预期工作。

【讨论】:

  • 非常有用的答案。我可以剪切和粘贴并添加适合的方法,稍后再了解更详细的细节。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2020-03-24
  • 2011-04-23
  • 1970-01-01
  • 2022-01-16
  • 1970-01-01
  • 2022-12-14
  • 2021-07-31
相关资源
最近更新 更多