Defines conversions from the Monix type-classes defined in monix.types to type-class instances from the Scalaz library.
      
    
      
      
    
      
      
    
      
      
    
      
      
    
      
      
    
      Defines conversions from Cats type-class instances to the Monix type-classes defined in monix.types.
      
    
      Converts Monix's type instances into the Scalaz Monad.
Converts Monix's type instances into the Scalaz Monad.
      
    
      Converts Monix's type instances into the Scalaz Applicative.
Converts Monix's type instances into the Scalaz Applicative.
      
    
      Converts Monix's types instances into the Scalaz BindRec.
Converts Monix's types instances into the Scalaz BindRec.
      
    
      Converts Monix's type instances into the Scalaz Cobind.
Converts Monix's type instances into the Scalaz Cobind.
      
    
      Converts Monix's type instances into the Scalaz Comonad.
Converts Monix's type instances into the Scalaz Comonad.
      
    
      Converts Monix's type instances into the Scalaz Functor.
Converts Monix's type instances into the Scalaz Functor.
      
    
      Converts Monix's type instances into the Scalaz MonadError.
Converts Monix's type instances into the Scalaz MonadError.
      
    
      Converts Monix's types instances into the Scalaz MonadPlus.
Converts Monix's types instances into the Scalaz MonadPlus.
      
    
      Converts Monix's type instances into the Scalaz Plus.
Converts Monix's type instances into the Scalaz Plus.
      
    
      Converts Monix's type instances into the Scalaz PlusEmpty.
Converts Monix's type instances into the Scalaz PlusEmpty.
      
    
      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._
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: