3

Ruby 有一个方法允许我们观察值的管道,而无需修改底层值:

# Ruby
list.tap{|o| p o}.map{|o| 2*o}.tap{|o| p o}

Scala中有这样的方法吗?我相信这被称为 Kestrel Combinator,但不能确定。

4

1 回答 1

4

这是 github 上的一种实现: https ://gist.github.com/akiellor/1308190

在这里重现:

import collection.mutable.MutableList
import Tap._

class Tap[A](any: A) {
  def tap(f: (A) => Unit): A = {
    f(any)
    any
  }
}

object Tap {
  implicit def tap[A](toTap: A): Tap[A] = new Tap(toTap)
}

MutableList[String]().tap({m:MutableList[String] =>
  m += "Blah"
})

MutableList[String]().tap(_ += "Blah")

MutableList[String]().tap({ l =>
  l += "Blah"
  l += "Blah"
})
于 2013-05-24T19:13:02.497 回答