class IterantBuilders[F[_]] extends AnyRef
Class defining curried Iterant builders, relieving the user from
specifying the A parameter explicitly.
So instead of having to do:
Iterant.now[Task, Int](1)
You can do:
Iterant[Task].now(1)
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- IterantBuilders
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new IterantBuilders()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
empty[A]: Iterant[F, A]
Aliased builder, see documentation for Iterant.empty.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
haltS[A](e: Option[Throwable]): Iterant[F, A]
Aliased builder, see documentation for Iterant.haltS.
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
lastS[A](item: A): Iterant[F, A]
Aliased builder, see documentation for Iterant.lastS.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
nextBatchS[A](batch: Batch[A], rest: F[Iterant[F, A]], stop: F[Unit]): Iterant[F, A]
Aliased builder, see documentation for Iterant.nextBatchS.
-
def
nextCursorS[A](cursor: BatchCursor[A], rest: F[Iterant[F, A]], stop: F[Unit]): Iterant[F, A]
Aliased builder, see documentation for Iterant.nextCursorS.
-
def
nextS[A](item: A, rest: F[Iterant[F, A]], stop: F[Unit]): Iterant[F, A]
Aliased builder, see documentation for Iterant.nextS.
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
now[A](a: A): Iterant[F, A]
Aliased builder, see documentation for Iterant.now.
-
def
pure[A](a: A): Iterant[F, A]
Aliased builder, see documentation for Iterant.pure.
-
def
raiseError[A](ex: Throwable): Iterant[F, A]
Aliased builder, see documentation for Iterant.raiseError.
-
def
suspendS[A](rest: F[Iterant[F, A]], stop: F[Unit]): Iterant[F, A]
Aliased builder, see documentation for Iterant.suspendS.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )