LazyListInstances
trait LazyListInstances
class Object
trait Matchable
class Any
Implicits
Implicits
implicit
An alternative scalaz.Applicative instance for LazyList
, discriminated by the type tag scalaz.Tags.Zip,
that zips lazylists together.
An alternative scalaz.Applicative instance for LazyList
, discriminated by the type tag scalaz.Tags.Zip,
that zips lazylists together.
Example:
import scalaz.Tags.Zip
lazylistZipApplicative.apply2(Zip(LazyList(1, 2)), Zip(LazyList(3, 4)))(_ * _) // LazyList(3, 8)