假设我有Iterator[A]
。我想将其转换为scalaz stream的Process[Nothing, A]
。
import scalaz.stream._
def foo[A](it: Iterator[A]): Process[Nothing, A] = ???
您将如何实施foo
?
答案 0 :(得分:8)
我认为你可以使用unfold
:
import scalaz.stream._
def foo[A](it: Iterator[A]): Process[Nothing, A] = Process.unfold(it) { it =>
if (it.hasNext) Some((it.next, it))
else None
}
示例:
scala> foo(List(1,2,3,4,5).iterator).toList
res0: List[Int] = List(1,2,3,4,5)