Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert Iterator to scalaz stream?

Suppose I've got an Iterator[A]. I would like to convert it to Process[Nothing, A] of scalaz stream.

import scalaz.stream._

def foo[A](it: Iterator[A]): Process[Nothing, A] = ???

How would you implement foo ?

like image 513
Michael Avatar asked Oct 19 '15 06:10

Michael


1 Answers

I think that you can do it using 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
}

Example:

scala> foo(List(1,2,3,4,5).iterator).toList
res0: List[Int] = List(1,2,3,4,5)
like image 161
Aldo Stracquadanio Avatar answered Nov 04 '22 17:11

Aldo Stracquadanio