Skip to content

Instantly share code, notes, and snippets.

@vba
Last active May 3, 2016 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vba/55d522077268ce1ec586631bc2a2e7a6 to your computer and use it in GitHub Desktop.
Save vba/55d522077268ce1ec586631bc2a2e7a6 to your computer and use it in GitHub Desktop.
object SimpleComposition {
case class Wheat()
case class Flour()
case class Dough()
case class Bread()
def grind: (Wheat => Flour) = w => {
println("make the flour"); Flour()
}
def kneadDough: (Flour => Dough) = f => {
println("make the dough"); Dough()
}
def distributeDough: (Dough => Seq[Dough]) = d => {
println("distribute the dough"); Seq[Dough]()
}
def bake: (Int => Int => Seq[Dough] => Seq[Bread]) =
temperature => duration => sd => {
println(s"bake the bread, duration: $duration, temperature: $temperature")
Seq[Bread]()
}
def bakeRecipe1 = bake(350)(45)
def main(args: Array[String]): Unit = {
(grind >> kneadDough >> distributeDough >> bakeRecipe1) (Wheat())
}
implicit class Forward[TIn, TIntermediate](f: TIn => TIntermediate) {
def >> [TOut](g: TIntermediate => TOut): TIn => TOut = source => g(f(source))
}
}
object MonadicComposition {
case class Wheat()
case class Flour()
case class Dough()
case class Bread()
def grind: (Wheat => Either[Flour, String]) = w => {
println("make the flour"); Left(Flour())
}
def kneadDough: (Flour => Either[Dough, String]) = f => {
println("make the dough"); Left(Dough())
}
def distributeDough: (Dough => Either[Seq[Dough], String]) = d => {
println("distribute the dough"); Left(Seq[Dough]())
}
def bake: (Int => Int => Seq[Dough] => Either[Seq[Bread], String]) =
temperature => duration => sd => {
println(s"bake the bread, duration: $duration, temperature: $temperature")
Left(Seq[Bread]())
}
def bakeRecipe1 = bake(350)(45)
def main(args: Array[String]): Unit = {
grind(Wheat()) >>= kneadDough >>= distributeDough >>= bakeRecipe1
}
implicit class MonadicForward[TLeft, TRight](twoTrackInput: Either[TLeft,TRight]) {
def >>= [TIntermediate](switchFunction: TLeft => Either[TIntermediate, TRight]) =
twoTrackInput match {
case Left (s) => switchFunction(s)
case Right (f) => Right(f)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment