EphemeralStreamInstances

sealed abstract
class Object
trait Matchable
class Any

Implicits

Implicits

implicit
def ephemeralStreamOrder[A](implicit A: Order[A]): Order[EphemeralStream[A]]

An alternative scalaz.Applicative instance for EphemeralStream, discriminated by the type tag scalaz.Tags.Zip, that zips streams together.

An alternative scalaz.Applicative instance for EphemeralStream, discriminated by the type tag scalaz.Tags.Zip, that zips streams together.

Example:

import scalaz.Tags.Zip
streamZipApplicative.apply2(Zip(EphemeralStream(1, 2)), Zip(EphemeralStream(3, 4)))(_ * _) // EphemeralStream(3, 8)