scalaz

StreamT

class StreamT [M[_], A] extends AnyRef

Attributes
sealed
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. StreamT
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StreamT (stepper: ⇒ M[Step[A, StreamT[M, A]]])

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def ++ [B >: A] (bs: ⇒ StreamT[M, B])(implicit M: Functor[M]): StreamT[M, B]

  5. def :: (a: ⇒ A)(implicit M: Pure[M]): StreamT[M, A]

  6. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  7. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  8. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  9. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. def dropWhile (p: (A) ⇒ Boolean)(implicit M: Functor[M]): StreamT[M, A]

  11. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  12. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def filter (p: (A) ⇒ Boolean)(implicit M: Functor[M]): StreamT[M, A]

  14. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def flatMap [B] (f: (A) ⇒ StreamT[M, B])(implicit M: Functor[M]): StreamT[M, B]

  16. def foldLeft [B] (z: ⇒ B)(f: (⇒ B, ⇒ A) ⇒ B)(implicit M: Monad[M]): M[B]

  17. def foldRight [B] (z: ⇒ B)(f: (⇒ A, ⇒ B) ⇒ B)(implicit M: Monad[M]): M[B]

  18. def foreach (f: (A) ⇒ M[Unit])(implicit M: Monad[M]): M[Unit]

  19. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  20. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  21. def head (implicit M: Monad[M]): M[A]

  22. def isEmpty (implicit M: Monad[M]): M[Boolean]

  23. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  24. def length (implicit M: Monad[M]): M[Int]

  25. def map [B] (f: (A) ⇒ B)(implicit M: Functor[M]): StreamT[M, B]

  26. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  27. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  28. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  29. def step : M[Step[A, StreamT[M, A]]]

  30. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  31. def tail (implicit M: Functor[M]): StreamT[M, A]

    Don't use iteratively!

  32. def tailM (implicit M: Monad[M]): M[StreamT[M, A]]

  33. def takeWhile (p: (A) ⇒ Boolean)(implicit M: Functor[M]): StreamT[M, A]

  34. def toStream (implicit M: Monad[M]): M[Stream[A]]

  35. def toString (): String

    Definition Classes
    AnyRef → Any
  36. def trans [N[_]] (t: ~>[M, N])(implicit arg0: Functor[N]): StreamT[N, A]

  37. def uncons (implicit M: Monad[M]): M[Option[(A, StreamT[M, A])]]

  38. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  39. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  40. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any