trait
Generator[C[_]] extends AnyRef
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
-
def
finalize(): Unit
-
def
from[E, M](r: Reducer[E, M], c: C[E], m: M): M
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
reduce[E, M](r: Reducer[E, M], c: C[E]): M
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
to[E, M](r: Reducer[E, M], m: M, c: C[E]): M
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
A
Generator[C]
is a container of elements, and which knows how to efficiently apply a scalaz.Reducer to extract an answer by combining elements. AReducer
may supply efficient left-to-right and right-to-left reduction strategies that aGenerator
may avail itself of.