org.specs2.control.producer
package org.specs2.control.producer
Type members
Classlikes
ADT for streaming data with a Producer. It is either:
ADT for streaming data with a Producer. It is either:
- Done: nothing left to stream
- One: there is just one element
- More(as, next): there are
aselements and the next producer
case class Producer[F[_], A](run: F[LazyList[F, A]])(using `evidence$1`: Monad[F], `evidence$2`: Safe[F])
Simple streaming data structure for elements of type A and effects F
Simple streaming data structure for elements of type A and effects F
- Companion
- object