Packages

c

monix.tail

IterantBuildersApplicative

class IterantBuildersApplicative[F[_]] extends IterantBuilders[F]

Class defining curried Iterant builders for data types that implement cats.Applicative.

So instead of having to do:

Iterant.of[Task, Int](1, 2, 3)

You can do:

Iterant[Task].now(1, 2, 3)
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IterantBuildersApplicative
  2. IterantBuilders
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IterantBuildersApplicative()(implicit F: Applicative[F])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. def empty[A]: Iterant[F, A]

    Aliased builder, see documentation for Iterant.empty.

    Aliased builder, see documentation for Iterant.empty.

    Definition Classes
    IterantBuilders
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def fromArray[A](xs: Array[A])(implicit arg0: ClassTag[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromArray.

  11. def fromIndexedSeq[A](xs: IndexedSeq[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromIndexedSeq.

  12. def fromIterable[A](xs: Iterable[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromIterable.

  13. def fromIterator[A](xs: Iterator[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromIterator.

  14. def fromList[A](xs: LinearSeq[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromList.

  15. def fromSeq[A](xs: Seq[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromSeq.

  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def haltS[A](e: Option[Throwable]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.haltS.

    Aliased builder, see documentation for Iterant.haltS.

    Definition Classes
    IterantBuilders
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def lastS[A](item: A): Iterant[F, A]

    Aliased builder, see documentation for Iterant.lastS.

    Aliased builder, see documentation for Iterant.lastS.

    Definition Classes
    IterantBuilders
  21. def liftF[A](a: F[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.liftF.

  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def nextBatchS[A](batch: Batch[A], rest: F[Iterant[F, A]], stop: F[Unit]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.nextBatchS.

    Aliased builder, see documentation for Iterant.nextBatchS.

    Definition Classes
    IterantBuilders
  24. def nextCursorS[A](cursor: BatchCursor[A], rest: F[Iterant[F, A]], stop: F[Unit]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.nextCursorS.

    Aliased builder, see documentation for Iterant.nextCursorS.

    Definition Classes
    IterantBuilders
  25. def nextS[A](item: A, rest: F[Iterant[F, A]], stop: F[Unit]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.nextS.

    Aliased builder, see documentation for Iterant.nextS.

    Definition Classes
    IterantBuilders
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def now[A](a: A): Iterant[F, A]

    Aliased builder, see documentation for Iterant.now.

    Aliased builder, see documentation for Iterant.now.

    Definition Classes
    IterantBuilders
  29. def of[A](elems: A*): Iterant[F, A]

    Given a list of elements build a stream out of it.

  30. def pure[A](a: A): Iterant[F, A]

    Aliased builder, see documentation for Iterant.pure.

    Aliased builder, see documentation for Iterant.pure.

    Definition Classes
    IterantBuilders
  31. def raiseError[A](ex: Throwable): Iterant[F, A]

    Aliased builder, see documentation for Iterant.raiseError.

    Aliased builder, see documentation for Iterant.raiseError.

    Definition Classes
    IterantBuilders
  32. def range(from: Int, until: Int, step: Int = 1): Iterant[F, Int]

    Aliased builder, see documentation for Iterant.range.

  33. def suspend[A](rest: F[Iterant[F, A]]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.suspend.

  34. def suspendS[A](rest: F[Iterant[F, A]], stop: F[Unit]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.suspendS.

    Aliased builder, see documentation for Iterant.suspendS.

    Definition Classes
    IterantBuilders
  35. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from IterantBuilders[F]

Inherited from AnyRef

Inherited from Any

Ungrouped