ronaldcmde / scala-functional-programming-tutorial

Functional Programming in Scala Tutorial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Functional Programming in Scala Tutorial

This repo contains the notes of the functional programming hotbed of research of the Universidad EAFIT.
This is intended to be a simple introductory tutorial to Scala in general and to Functional Programming (using the Typelevel stack) in it.

Contents

  1. scalaintro This package contains notes for introduction to the Scala Programming Language.
    1. ScalaNotes.scala Basic introduction to the language.
    2. ImplicitsNotes.scala Introduction to the implicits mechanism of Scala (includes ValueClasses too).
    3. SubtypeNotes.scala Variance, Type bounds & Generalized type constraints.
    4. TypeclassesNotes.scala Simple introduction to the typeclass pattern in Scala.
  2. catsintro This package contains notes for introduction to the Cats library for Functional Programming.
    1. MonoidNotes.scala Semigroup & Monoid notes.
    2. FunctorNotes.scala Covariant, Contravariant & Invariant Functor notes.
    3. MonadNotes.scala Monad notes - Id, Error, Eval, Writer, Reader & State Monads notes - Monad Transformers notes.
    4. ApplicativeNotes.scala Applicative & Validated notes.
    5. TraverseNotes.scala Foldable & Traverse notes.
  3. catscases This packages contains the solutions to case studies of Scala with Cats book. (pending)
  4. iointro This package contains notes for introduction to the Cats-Effect library for Effects. (pending)

Bibliography

The following is a list of bibliographic material used for this tutorial.

About

Functional Programming in Scala Tutorial


Languages

Language:Scala 100.0%