class Macros extends HygieneUtilMacros with InlineMacros
- Alphabetic
- By Inheritance
- Macros
- InlineMacros
- HygieneUtilMacros
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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
- def addMacro[A](value: scala.reflect.macros.whitebox.Context.Expr[A])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[Unit]
- def applyMacro[A]()(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[A]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def buildAnyMacro[A, R <: Atomic[A]](initialValue: scala.reflect.macros.whitebox.Context.Expr[A])(builder: scala.reflect.macros.whitebox.Context.Expr[AtomicBuilder[A, R]])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A], arg1: scala.reflect.macros.whitebox.Context.WeakTypeTag[R]): scala.reflect.macros.whitebox.Context.Expr[R]
- def buildAnyWithPaddingMacro[A, R <: Atomic[A]](initialValue: scala.reflect.macros.whitebox.Context.Expr[A], padding: scala.reflect.macros.whitebox.Context.Expr[PaddingStrategy])(builder: scala.reflect.macros.whitebox.Context.Expr[AtomicBuilder[A, R]])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A], arg1: scala.reflect.macros.whitebox.Context.WeakTypeTag[R]): scala.reflect.macros.whitebox.Context.Expr[R]
- val c: Context
- Definition Classes
- Macros → InlineMacros → HygieneUtilMacros
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def getAndTransformMacro[A](cb: scala.reflect.macros.whitebox.Context.Expr[(A) => A])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[A]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def inlineAndReset[A](tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.whitebox.Context.Expr[A]
- Definition Classes
- InlineMacros
- def inlineAndResetTree(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
- Definition Classes
- InlineMacros
- def inlineApplyRecursive(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
- Definition Classes
- InlineMacros
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def resetTree(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
- Definition Classes
- InlineMacros
- def setMacro[A](value: scala.reflect.macros.whitebox.Context.Expr[A])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[Unit]
- def stripUnApplyNodes(): scala.reflect.macros.Universe.Transformer
Creates a macro transformer that gets rid of implicit unapply in case statements.
Creates a macro transformer that gets rid of implicit unapply in case statements.
Workaround for: https://issues.scala-lang.org/browse/SI-5465
- Definition Classes
- InlineMacros
- def subtractMacro[A](value: scala.reflect.macros.whitebox.Context.Expr[A])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[Unit]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def transformAndExtractMacro[S, A](cb: scala.reflect.macros.whitebox.Context.Expr[(S) => (A, S)])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[S], arg1: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[A]
- def transformAndGetMacro[A](cb: scala.reflect.macros.whitebox.Context.Expr[(A) => A])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[A]
- def transformMacro[A](cb: scala.reflect.macros.whitebox.Context.Expr[(A) => A])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[Unit]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object util
- Definition Classes
- HygieneUtilMacros
This is the API documentation for the Monix library.
Package Overview
monix.execution exposes lower level primitives for dealing with asynchronous execution:
Atomic
types, as alternative tojava.util.concurrent.atomic
monix.catnap exposes pure abstractions built on top of the Cats-Effect type classes:
monix.eval is for dealing with evaluation of results, thus exposing Task and Coeval.
monix.reactive exposes the
Observable
pattern:Observable
implementationsmonix.tail exposes Iterant for purely functional pull based streaming:
Batch
andBatchCursor
, the alternatives to Scala'sIterable
andIterator
respectively that we are using within Iterant's encodingYou can control evaluation with type you choose - be it Task, Coeval, cats.effect.IO or your own as long as you provide correct cats-effect or cats typeclass instance.