Class/Object

scalaz

StreamT

Related Docs: object StreamT | package scalaz

Permalink

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

StreamT monad transformer.

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

Instance Constructors

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

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++(bs: ⇒ StreamT[M, A])(implicit m: Functor[M]): StreamT[M, A]

    Permalink
  4. def ::(a: ⇒ A)(implicit M: Applicative[M]): StreamT[M, A]

    Permalink
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def drop(n: Int)(implicit M: Functor[M]): StreamT[M, A]

    Permalink
  9. def dropWhile(p: (A) ⇒ Boolean)(implicit m: Functor[M]): StreamT[M, A]

    Permalink
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

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

    Permalink
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def flatMap[B](f: (A) ⇒ StreamT[M, B])(implicit m: Functor[M]): StreamT[M, B]

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

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

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

    Permalink
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int

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

    Permalink
  21. def headOption(implicit M: Monad[M]): M[Option[A]]

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

    Permalink
  23. final def isInstanceOf[T0]: Boolean

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

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

    Permalink
  26. def mapM[B](f: (A) ⇒ M[B])(implicit m: Monad[M]): StreamT[M, B]

    Permalink

    Since

    7.0.1

  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. val step: M[Step[A, StreamT[M, A]]]

    Permalink
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def tail(implicit m: Functor[M]): StreamT[M, A]

    Permalink

    Don't use iteratively!

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

    Permalink
  34. def take(n: Int)(implicit M: Functor[M]): StreamT[M, A]

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

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

    Permalink
  37. def toString(): String

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

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

    Permalink
  40. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped