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)
class Object
trait Matchable
class Any

Type members

Classlikes

final class Apply[F[_]](val v: Boolean) 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.