Upgrade to Pro — share decks privately, control downloads, hide ads and more …

ScalaMatsuri 2018 - A pragmatic introduction to Category Theory

ScalaMatsuri 2018 - A pragmatic introduction to Category Theory

Category Theory has become one of the hot topics in the community. Why is this theory suddenly so interesting for developers? Why are the cool kids talking so much about it?

This talk will introduce the general principles of Category Theory in a pragmatic, non-mathematical way. We will show practical examples of how this theory has managed to simplify and solve common challenges that we encounter in our code daily, such as nullable values, error handling, parallel and sequential operations and data validation. Also, we will apply them to create our own category theory library from scratch using ScalaCheck as the only dependency.

Daniela Sfregola

March 17, 2018
Tweet

More Decks by Daniela Sfregola

Other Decks in Programming

Transcript

  1. AGENDA - Intro - Monoid - Functor - Applicative -

    Monad github.com/DanielaSfregola/tutorial-cat
  2. MONOID'S RULES Identity n o id == id o n

    == n Composition forall x, y => x o y Associativity x o (y o z) == (x o y) o z
  3. EXERCISES ON MONOID > Define a monoid for Int >

    Define a monoid for String sbt 'testOnly *Monoid*' github.com/DanielaSfregola/tutorial-cat
  4. CATEGORY IN A BOX > Objects are in a Box

    > All the arrows are mapped
  5. FUNCTOR'S RULES Identity map(id) == id Composition map(g o f)

    == map(g) o map(f) Associativity map(h o g) o map(f) == map(h) o map(g o f)
  6. EXERCISES ON FUNCTOR > Define a functor for Maybe >

    Define a functor for ZeroOrMore sbt 'testOnly *Functor*' github.com/DanielaSfregola/tutorial-cat
  7. COMBINE BOXES TOGETHER > How to create a new box

    > How to combine their values together
  8. APPLICATIVE class Applicative[Box[_]] extends Functor[Box] { def pure[A](a: A): Box[A]

    def ap[A, B](boxF: Box[A => B])(boxA: Box[A]): Box[B] def map[A, B](boxA: Box[A])(f: A => B): Box[B] = ??? // spoiler alert }
  9. APPLICATIVE class Applicative[Box[_]] extends Functor[Box] { def pure[A](a: A): Box[A]

    def ap[A, B](boxF: Box[A => B])(value: Box[A]): Box[B] def ap2[A1, A2, B](boxF: Box[(A1, A2) => B]) (value1: Box[A1], value2: Box[A2]): Box[B] // up to 22 values! // same for map }
  10. EXERCISES ON APPLICATIVE > Define map in terms of ap

    and pure > Define an applicative for Maybe > Define an applicative for ZeroOrMore sbt 'testOnly *Applicative*' github.com/DanielaSfregola/tutorial-cat
  11. MONAD (AS FUNCTOR) class Monad[Box[_]] extends Functor[Box] { def flatten[A](bb:

    Box[Box[A]]): Box[A] def flatMap[A, B](valueA: Box[A])(f: A => Box[B]): Box[B] = { val bb: Box[Box[B]] = map(valueA)(f) bb.flatten } }
  12. FOR-COMPREHENSION val boxA: Box[A] def toBoxB: A => Box[B] def

    toBoxC: B => Box[C] def toBoxD: C => Box[D] for { a <- boxA b <- toBoxB(a) c <- toBoxC(b) d <- toBoxD(c) } yield d
  13. MONAD (AS APPLICATIVE) trait Monad[Box[_]] extends Applicative[Box] { def flatMap[A,

    B](boxA: Box[A])(f: A => Box[B]): Box[B] // TODO - implement using flatMap def flatten[A](boxBoxA: Box[Box[A]]): Box[A] = ??? // TODO - implement using flatMap and map override def ap[A, B](boxF: Box[A => B]) (boxA: Box[A]): Box[B] = ??? // TODO - implement using flatMap and pure override def map[A, B](boxA: Box[A])(f: A => B): Box[B] = ??? }
  14. EXERCISES ON MONAD (1) > Define flatten using flatMap >

    Define map using flatMap and pure > Define ap using flatMap and map github.com/DanielaSfregola/tutorial-cat
  15. EXERCISES ON MONAD (2) > Define a monad for Maybe

    > Define a monad for ZeroOrMore sbt 'testOnly *Monad*' github.com/DanielaSfregola/tutorial-cat
  16. SUMMARY CATEGORY THEORY >> how things compose MONOID >> combining

    2 values into 1 FUNCTOR >> values lifted to a context APPLICATIVE >> independent values applied to a function in a context MONAD >> ops in sequence in a context
  17. WANNA KNOW MORE? > Category Theory for the WH by

    @PhilipWadler > Category Theory by @BartoszMilewski > Cats-Infographics by Rob Norris - @tpolecat > Cats Documentation - Type Classes