Packages

c

monix.tail

IterantBuildersSync

class IterantBuildersSync[F[_]] extends IterantBuildersApplicative[F]

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

So instead of having to do:

Iterant.eval[Task, Int](1 + 1)

You can do:

Iterant[Task].eval(1 + 1)
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IterantBuildersSync
  2. IterantBuildersApplicative
  3. IterantBuilders
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IterantBuildersSync()(implicit F: Sync[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 bracket[A, B](acquire: F[A])(use: (A) ⇒ Iterant[F, B], release: (A) ⇒ F[Unit])(implicit F: Sync[F]): Iterant[F, B]

    Aliased builder, see documentation for Iterant.bracket

  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. def defer[A](fa: ⇒ Iterant[F, A])(implicit F: Sync[F]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.defer.

  8. def empty[A]: Iterant[F, A]

    Aliased builder, see documentation for Iterant.empty.

    Aliased builder, see documentation for Iterant.empty.

    Definition Classes
    IterantBuilders
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def eval[A](a: ⇒ A)(implicit F: Sync[F]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.eval.

  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def fromArray[A](xs: Array[A])(implicit arg0: ClassTag[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromArray.

    Aliased builder, see documentation for Iterant.fromArray.

    Definition Classes
    IterantBuildersApplicative
  14. def fromIndexedSeq[A](xs: IndexedSeq[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromIndexedSeq.

    Aliased builder, see documentation for Iterant.fromIndexedSeq.

    Definition Classes
    IterantBuildersApplicative
  15. def fromIterable[A](xs: Iterable[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromIterable.

    Aliased builder, see documentation for Iterant.fromIterable.

    Definition Classes
    IterantBuildersApplicative
  16. def fromIterator[A](xs: Iterator[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromIterator.

    Aliased builder, see documentation for Iterant.fromIterator.

    Definition Classes
    IterantBuildersApplicative
  17. def fromList[A](xs: LinearSeq[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromList.

    Aliased builder, see documentation for Iterant.fromList.

    Definition Classes
    IterantBuildersApplicative
  18. def fromSeq[A](xs: Seq[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromSeq.

    Aliased builder, see documentation for Iterant.fromSeq.

    Definition Classes
    IterantBuildersApplicative
  19. def fromStateAction[S, A](f: (S) ⇒ (A, S))(seed: ⇒ S)(implicit F: Sync[F]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromStateAction.

  20. def fromStateActionL[S, A](f: (S) ⇒ F[(A, S)])(seed: ⇒ F[S])(implicit F: Sync[F]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.fromStateActionL.

  21. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. 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
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. 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
  26. def liftF[A](a: F[A]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.liftF.

    Aliased builder, see documentation for Iterant.liftF.

    Definition Classes
    IterantBuildersApplicative
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. 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
  29. 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
  30. 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
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. 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
  34. def of[A](elems: A*): Iterant[F, A]

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

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

    Definition Classes
    IterantBuildersApplicative
  35. 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
  36. 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
  37. def range(from: Int, until: Int, step: Int = 1): Iterant[F, Int]

    Aliased builder, see documentation for Iterant.range.

    Aliased builder, see documentation for Iterant.range.

    Definition Classes
    IterantBuildersApplicative
  38. def repeat[A](elems: A*)(implicit F: Sync[F]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.repeat.

  39. def repeatEval[A](thunk: ⇒ A)(implicit F: Sync[F]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.repeatEval.

  40. def repeatEvalF[A](fa: F[A])(implicit F: Sync[F]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.repeatEvalF.

  41. def suspend[A](fa: ⇒ Iterant[F, A])(implicit F: Sync[F]): Iterant[F, A]

    Aliased builder, see documentation for Iterant.suspend.

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

    Aliased builder, see documentation for Iterant.suspend.

    Aliased builder, see documentation for Iterant.suspend.

    Definition Classes
    IterantBuildersApplicative
  43. 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
  44. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  45. def tailRecM[A, B](a: A)(f: (A) ⇒ Iterant[F, Either[A, B]])(implicit F: Sync[F]): Iterant[F, B]

    Aliased builder, see documentation for Iterant.tailRecM.

  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from IterantBuildersApplicative[F]

Inherited from IterantBuilders[F]

Inherited from AnyRef

Inherited from Any

Ungrouped