import scalaz._
import Scalaz._
import scalaz.effect._
import effectie.scalaz.ConsoleEffectful._
import effectie.scalaz.Effectful._
import effectie.scalaz.EitherTSupport._
import effectie.scalaz.OptionTSupport._
import effectie.scalaz._
trait Something[F[_]] {
def foo[A: Semigroup](a: A): F[A]
def bar[A: Semigroup](a: Option[A]): F[Option[A]]
def baz[A: Semigroup, B: Semigroup](a: A \/ B): F[A \/ B]
}
object Something {
def apply[F[_]: Something]: Something[F] =
implicitly[Something[F]]
implicit def something[F[_]: Fx: ConsoleEffect: Monad]: Something[F] =
new SomethingF[F]
final class SomethingF[F[_]: Fx: ConsoleEffect: Monad]
extends Something[F] {
override def foo[A: Semigroup](a: A): F[A] =
for {
n <- effectOf(a)
blah <- pureOf("blah blah")
_ <- effectOf(println(s"n: $n / BLAH: $blah"))
x <- effectOf(n |+| n)
_ <- putStrLn(s"x: $x")
} yield x
override def bar[A: Semigroup](a: Option[A]): F[Option[A]] =
(for {
aa <- a.optionT[F]
blah <- "blah blah".someTF[F]
_ <- effectOf(
println(s"a: $a / BLAH: $blah")
).someT
x <- effectOf(a |+| a).optionT
_ <- effectOf(putStrLn(s"x: $x")).someT
} yield x).run
override def baz[A: Semigroup, B: Semigroup](ab: A \/ B): F[A \/ B] =
(for {
b <- ab.eitherT[F]
blah <- "blah blah"
.right[A]
.eitherT[F]
_ <- effectOf(
println(s"b: $b / BLAH: $blah")
).rightT[A]
x <- effectOf(ab |+| ab).eitherT
_ <- effectOf(
putStrLn(s"x: $x")
).rightT[A]
} yield x).run
}
}
println(Something[IO].foo(1).unsafePerformIO())
println(Something[IO].bar(2.some).unsafePerformIO())
println(Something[IO].bar(none[String]).unsafePerformIO())
println(Something[IO].baz(2.right[String]).unsafePerformIO())
println(Something[IO].baz("ERROR!!!".left[Int]).unsafePerformIO())