Packages

o

monix.tail

IterantBuilders

object IterantBuilders

IterantBuilders.Apply is a set of builders for Iterant returned by Iterant.apply

This is used to achieve the Partially-Applied Type technique.

So instead of having to do:

import monix.eval.Task

Iterant.pure[Task, Int](1)

You can do:

Iterant[Task].pure(1)
Source
IterantBuilders.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IterantBuilders
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final class Apply[F[_]] extends AnyVal

    See the description on IterantBuilders for the purpose of this class.

    See the description on IterantBuilders for the purpose of this class.

    Class defined inside object due to Scala's limitations on declaring AnyVal classes.