Packages

p

monix

scalaz

package scalaz

Package exposing the Monix integration with the Scalaz library.

See the library's documentation at scalaz.org.

To convert Monix type-class instances into Scalaz types:

import monix.scalaz._

To convert Scalaz type-class instances into Monix types:

import monix.scalaz.reverse._

Do not bring these imports into the same scope as you can experience conflicts if you do:

// Do not do this!
import monix.scalaz._
import monix.scalaz.reverse._
Source
package.scala
Linear Supertypes
MonixToScalazConversions, MonixToScalaz10, MonixToScalaz9, MonixToScalaz8, MonixToScalaz7, MonixToScalaz6, MonixToScalaz5, MonixToScalaz4, MonixToScalaz3, MonixToScalaz2, MonixToScalaz1, MonixToScalaz0, MonixToScalazKernel1, MonixToScalazKernel0, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. scalaz
  2. MonixToScalazConversions
  3. MonixToScalaz10
  4. MonixToScalaz9
  5. MonixToScalaz8
  6. MonixToScalaz7
  7. MonixToScalaz6
  8. MonixToScalaz5
  9. MonixToScalaz4
  10. MonixToScalaz3
  11. MonixToScalaz2
  12. MonixToScalaz1
  13. MonixToScalaz0
  14. MonixToScalazKernel1
  15. MonixToScalazKernel0
  16. AnyRef
  17. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class MonixApplicativeHasScalazMonoid[F[_], A] extends scalaz.MonixToScalazKernel1.MonixApplicativeHasScalazSemigroup[F, A] with Monoid[F[A]]

    Given a Monix Applicative for F[A] and a scalaz.Monoid defined for A, then F[A] can also have a Monoid instance.

    Given a Monix Applicative for F[A] and a scalaz.Monoid defined for A, then F[A] can also have a Monoid instance.

    You can import monixApplicativeHasScalazMonoid in scope initiate the MonixApplicativeHasScalazMonoid class.

    Definition Classes
    MonixToScalazKernel1
  2. class MonixApplicativeHasScalazSemigroup[F[_], A] extends Semigroup[F[A]]

    Given a Monix Applicative for F[A] and a scalaz.Semigroup defined for A, then F[A] can also have a Semigroup instance.

    Given a Monix Applicative for F[A] and a scalaz.Semigroup defined for A, then F[A] can also have a Semigroup instance.

    You can import monixApplicativeHasScalazSemigroup in scope initiate the MonixApplicativeHasScalazSemigroup class.

    Definition Classes
    MonixToScalazKernel0
  3. class MonixToScalazApplicative[F[_]] extends Applicative[F]

    Converts Monix's Applicative instances into the Scalaz Applicative.

    Converts Monix's Applicative instances into the Scalaz Applicative.

    You can import monixToScalazApplicative in scope, or initiate/extend the MonixToScalazApplicative class.

    Definition Classes
    MonixToScalaz1
  4. class MonixToScalazBindRec[F[_]] extends scalaz.MonixToScalaz10.MonixToScalazMonad[F] with BindRec[F]
    Definition Classes
    MonixToScalaz10
  5. class MonixToScalazCatchable[F[_]] extends scalaz.MonixToScalaz4.MonixToScalazMonad[F] with Catchable[F]
    Definition Classes
    MonixToScalaz4
  6. class MonixToScalazCobind[F[_]] extends scalaz.MonixToScalaz5.MonixToScalazFunctor[F] with Cobind[F]

    Converts Monix's Cobind instances into the Scalaz Cobind.

    Converts Monix's Cobind instances into the Scalaz Cobind.

    You can import monixToScalazCobind in scope, or initiate/extend the MonixToScalazCobind class.

    Definition Classes
    MonixToScalaz5
  7. class MonixToScalazComonad[F[_]] extends scalaz.MonixToScalaz6.MonixToScalazCobind[F] with Comonad[F]

    Converts Monix's Comonad instances into the Scalaz Comonad.

    Converts Monix's Comonad instances into the Scalaz Comonad.

    You can import monixToScalazComonad in scope, or initiate/extend the MonixToScalazComonad class.

    Definition Classes
    MonixToScalaz6
  8. trait MonixToScalazConversions extends MonixToScalaz10

    Defines conversions from the Monix type-classes defined in monix.types to type-class instances from the Scalaz library.

  9. class MonixToScalazFunctor[F[_]] extends Functor[F]

    Converts Monix's Functor instances into the Scalaz Functor.

    Converts Monix's Functor instances into the Scalaz Functor.

    You can import monixToScalazFunctor in scope, or initiate/extend the MonixToScalazFunctor class.

    Definition Classes
    MonixToScalaz0
  10. class MonixToScalazMonad[F[_]] extends Monad[F]

    Converts Monix's Monad instances into the Scalaz Monad.

    Converts Monix's Monad instances into the Scalaz Monad.

    You can import monixToScalazMonad in scope, or initiate/extend the MonixToScalazMonad class.

    Definition Classes
    MonixToScalaz2
  11. class MonixToScalazMonadError[F[_], E] extends scalaz.MonixToScalaz3.MonixToScalazMonad[F] with MonadError[F, E]

    Converts Monix's MonadError instances into the Scalaz MonadError.

    Converts Monix's MonadError instances into the Scalaz MonadError.

    You can import monixToScalazMonadError in scope, or initiate/extend the MonixToScalazMonadError class.

    Definition Classes
    MonixToScalaz3
  12. class MonixToScalazMonadPlus[F[_]] extends scalaz.MonixToScalaz9.MonixToScalazMonad[F] with MonadPlus[F]

    Converts Monix's MonadFilter and MonoidK instances into the Scalaz MonadPlus.

    Converts Monix's MonadFilter and MonoidK instances into the Scalaz MonadPlus.

    You can import monixToScalazMonadPlus in scope, or initiate/extend the MonixToScalazMonadPlus class.

    Definition Classes
    MonixToScalaz9
  13. class MonixToScalazPlus[F[_]] extends Plus[F]

    Converts Monix's SemigroupK instances into the Scalaz Plus.

    Converts Monix's SemigroupK instances into the Scalaz Plus.

    You can import monixToScalazPlus in scope, or initiate/extend the MonixToScalazPlus class.

    Definition Classes
    MonixToScalaz7
  14. class MonixToScalazPlusEmpty[F[_]] extends scalaz.MonixToScalaz8.MonixToScalazPlus[F] with PlusEmpty[F]
    Definition Classes
    MonixToScalaz8
  15. trait ScalazToMonixConversions extends ScalazToMonix9

    Defines conversions from Cats type-class instances to the Monix type-classes defined in monix.types.

Value Members

  1. implicit def monixApplicativeHasScalazMonoid[F[_], A](implicit F: Applicative[F], A: Monoid[A]): Monoid[F[A]]

    Given a Monix Applicative for F[A] and a scalaz.Monoid defined for A, then F[A] can also have a Monoid instance.

    Given a Monix Applicative for F[A] and a scalaz.Monoid defined for A, then F[A] can also have a Monoid instance.

    You can import monixApplicativeHasScalazMonoid in scope initiate the MonixApplicativeHasScalazMonoid class.

    Definition Classes
    MonixToScalazKernel1
  2. implicit def monixApplicativeHasScalazSemigroup[F[_], A](implicit F: Applicative[F], A: Semigroup[A]): Semigroup[F[A]]

    Given a Monix Applicative for F[A] and a scalaz.Semigroup defined for A, then F[A] can also have a Semigroup instance.

    Given a Monix Applicative for F[A] and a scalaz.Semigroup defined for A, then F[A] can also have a Semigroup instance.

    You can import monixApplicativeHasScalazSemigroup in scope initiate the MonixApplicativeHasScalazSemigroup class.

    Definition Classes
    MonixToScalazKernel0
  3. implicit def monixToScalazApplicative[F[_]](implicit arg0: Applicative[F]): Applicative[F]

    Converts Monix's Applicative instances into the Scalaz Applicative.

    Converts Monix's Applicative instances into the Scalaz Applicative.

    You can import monixToScalazApplicative in scope, or initiate/extend the MonixToScalazApplicative class.

    Definition Classes
    MonixToScalaz1
  4. implicit def monixToScalazBindRec[F[_]](implicit arg0: MonadRec[F]): Monad[F] with BindRec[F]

    Converts Monix's MonadRec instances into the Scalaz BindRec.

    Converts Monix's MonadRec instances into the Scalaz BindRec.

    You can import monixToScalazBindRec in scope, or initiate/extend the MonixToScalazBindRec class.

    Definition Classes
    MonixToScalaz10
  5. implicit def monixToScalazCatchable[F[_]](implicit F: MonadError[F, Throwable]): Catchable[F]

    Converts Monix's MonadError instances into the Scalaz Catchable.

    Converts Monix's MonadError instances into the Scalaz Catchable.

    You can import monixToScalazCatchable in scope, or initiate/extend the MonixToScalazCatchable class.

    Definition Classes
    MonixToScalaz4
  6. implicit def monixToScalazCobind[F[_]](implicit arg0: Cobind[F]): Cobind[F]

    Converts Monix's Cobind instances into the Scalaz Cobind.

    Converts Monix's Cobind instances into the Scalaz Cobind.

    You can import monixToScalazCobind in scope, or initiate/extend the MonixToScalazCobind class.

    Definition Classes
    MonixToScalaz5
  7. implicit def monixToScalazComonad[F[_]](implicit arg0: Comonad[F]): Comonad[F]

    Converts Monix's Comonad instances into the Scalaz Comonad.

    Converts Monix's Comonad instances into the Scalaz Comonad.

    You can import monixToScalazComonad in scope, or initiate/extend the MonixToScalazComonad class.

    Definition Classes
    MonixToScalaz6
  8. implicit def monixToScalazFunctor[F[_]](implicit arg0: Functor[F]): Functor[F]

    Converts Monix's Functor instances into the Scalaz Functor.

    Converts Monix's Functor instances into the Scalaz Functor.

    You can import monixToScalazFunctor in scope, or initiate/extend the MonixToScalazFunctor class.

    Definition Classes
    MonixToScalaz0
  9. implicit def monixToScalazMonad[F[_]](implicit arg0: Monad[F]): Monad[F]

    Converts Monix's Monad instances into the Scalaz Monad.

    Converts Monix's Monad instances into the Scalaz Monad.

    You can import monixToScalazMonad in scope, or initiate/extend the MonixToScalazMonad class.

    Definition Classes
    MonixToScalaz2
  10. implicit def monixToScalazMonadError[F[_], E](implicit F: MonadError[F, E]): MonadError[F, E]

    Converts Monix's MonadError instances into the Scalaz MonadError.

    Converts Monix's MonadError instances into the Scalaz MonadError.

    You can import monixToScalazMonadError in scope, or initiate/extend the MonixToScalazMonadError class.

    Definition Classes
    MonixToScalaz3
  11. implicit def monixToScalazMonadPlus[F[_]](implicit arg0: MonadFilter[F], arg1: MonoidK[F]): MonadPlus[F]

    Converts Monix's MonadFilter and MonoidK instances into the Scalaz MonadPlus.

    Converts Monix's MonadFilter and MonoidK instances into the Scalaz MonadPlus.

    You can import monixToScalazMonadPlus in scope, or initiate/extend the MonixToScalazMonadPlus class.

    Definition Classes
    MonixToScalaz9
  12. implicit def monixToScalazPlus[F[_]](implicit arg0: SemigroupK[F]): Plus[F]

    Converts Monix's SemigroupK instances into the Scalaz Plus.

    Converts Monix's SemigroupK instances into the Scalaz Plus.

    You can import monixToScalazPlus in scope, or initiate/extend the MonixToScalazPlus class.

    Definition Classes
    MonixToScalaz7
  13. implicit def monixToScalazPlusEmpty[F[_]](implicit arg0: MonoidK[F]): PlusEmpty[F]

    Converts Monix's MonoidK instances into the Scalaz PlusEmpty.

    Converts Monix's MonoidK instances into the Scalaz PlusEmpty.

    You can import monixToScalazPlusEmpty in scope, or initiate/extend the MonixToScalazPlusEmpty class.

    Definition Classes
    MonixToScalaz8
  14. object reverse extends ScalazToMonixConversions

    Defines conversions from Scalaz type-class instances to the Monix type-classes defined in monix.types.

    Defines conversions from Scalaz type-class instances to the Monix type-classes defined in monix.types.

    To use:

    import monix.scalaz.reverse._

    Note that importing both this and the Monix to Scalaz conversions in the same scope can create conflicts:

    // Don't do this!
    import monix.scalaz._
    import monix.scalaz.reverse._

Inherited from MonixToScalazConversions

Inherited from MonixToScalaz10

Inherited from MonixToScalaz9

Inherited from MonixToScalaz8

Inherited from MonixToScalaz7

Inherited from MonixToScalaz6

Inherited from MonixToScalaz5

Inherited from MonixToScalaz4

Inherited from MonixToScalaz3

Inherited from MonixToScalaz2

Inherited from MonixToScalaz1

Inherited from MonixToScalaz0

Inherited from MonixToScalazKernel1

Inherited from MonixToScalazKernel0

Inherited from AnyRef

Inherited from Any

Ungrouped