This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright 2016 TECNOLOGIA, SISTEMAS Y APLICACIONES S.L. | |
| */ | |
| import org.scalatest.FunSuite | |
| import shapeless.{ CNil, Coproduct, Inl, Inr, Typeable, :+: } | |
| import shapeless.syntax.typeable.typeableOps | |
| class AnyToCoproduct extends FunSuite with AnyToCoproductTypeableInstances { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| Translation of Raul Raja's article | |
| `FP for the average Joe - II - ScalaZ Monad Transformers` | |
| for using cats library instead of scalaz. | |
| @see http://bit.ly/1SkmOTe | |
| */ | |
| package joe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| Translation of Raul Raja's article | |
| `FP for the average Joe - I - ScalaZ Validation` | |
| for using cats library instead of scalaz. | |
| @see http://bit.ly/1UzKBEW | |
| */ | |
| package joe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.tecsisa.wr | |
| import akka.actor.ActorSystem | |
| import akka.stream.ActorMaterializer | |
| import akka.stream.scaladsl.Source | |
| import io.getquill._ | |
| import io.getquill.naming._ | |
| import scala.concurrent.ExecutionContext.Implicits.global |
NewerOlder