Package exposing the Monix integration with the Cats library.
Package exposing the Monix integration with the Scalaz library.
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._
Package exposing the Monix integration with the Cats library.
See the library's documentation at: typelevel.org/cats/
To convert Monix type-class instances into Cats types:
import monix.cats._
To convert Cats type-class instances into Monix types:
import monix.cats.reverse._
Do not bring these imports into the same scope as you can experience conflicts if you do: