StreamOps

final
class StreamOps[A](self: Stream[A]) extends AnyVal
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

final
def heads: Stream[Stream[A]]
final
def interleave(other: Stream[A]): Stream[A]
final
def intersperse(a: A): Stream[A]
final
def tails: Stream[Stream[A]]
final
final
def unfoldForest[B](f: A => (B, () => Stream[A])): Stream[Tree[B]]
final
def unfoldForestM[B, M[_] : Monad](f: A => M[(B, Stream[A])]): M[Stream[Tree[B]]]
final
def zapp[B, C](f: Stream[A => B => C]): Stream[B => C]
final