lucidd / fs2-cats

Interop between fs2 and cats

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FS2 Cats: Interoperability between FS2 and Cats

Build Status Gitter Chat

This library provides an interoperability layer between FS2 and Cats. At this time, the API of this library is two imports:

import fs2.interop.cats._         // Provides conversions from FS2 to Cats (e.g., FS2 Monad to Cats Monad)
import fs2.interop.cats.reverse._ // Provides conversions from Cats to FS2 (e.g., Cats Monad to FS2 Monad)

Note: importing both of these in to the same lexical scope may cause issues with ambiguous implicits.

Where to get the latest version

The 0.1.0 release is coming soon and you can start using the milestone release now.

// available for Scala 2.11.8 + Cats 0.7.0
libraryDependencies += "co.fs2" %% "fs2-cats" % "0.1.0-RC2"

About

Interop between fs2 and cats

License:MIT License


Languages

Language:Scala 100.0%