SlideShare a Scribd company logo
Applicative style
programming
jlgarhdez HaskellMADpepegar
Pepe García
Scala Engineer @ Fidesmo
Co-organizer @ HaskellMad & FP-MAD
Scala fan
Haskell Acolyth
Functional Programming Devotee
jlgarhdez HaskellMADpepegar
About this talk
Slides are available here:
http://es.slideshare.net/JosLuisGarcaHernndez/applicative-style-programming
Code is available here:
https://github.com/pepegar/Control.Applicative.Talk
jlgarhdez HaskellMADpepegar
What are we learning today?
● What are applicatives?
● When do we use them?
● Who is using them?
● How to use them?
jlgarhdez HaskellMADpepegar
Applicative style programming
What are applicatives?
Applicatives are an abstraction between functions and monads. And they open the
doors for the so called applicative style!
jlgarhdez HaskellMADpepegar
What are applicatives?
@jlgarhdez
class Functor f => Applicative f where
pure :: a -> f a
(<*>) :: f (a -> b) -> f a -> f b
jlgarhdez HaskellMADpepegar
What are applicatives?
Let’s understand the typeclass:
It exposes a `pure` function, that puts a value inside the applicative context
And a `<*>` function, that applies a function inside an applicative context to the
content of another value with the same applicative context
jlgarhdez HaskellMADpepegar
What are applicatives?
Do you remember fmap from functors? Try to compare it with <*>
fmap :: (a -> b) -> f a -> f b
(<*>) :: f (a -> b) -> f a -> f b
jlgarhdez HaskellMADpepegar
What are applicatives?
Basically an Applicative is a Functor that can also apply a function contained in a
container to other container of the same type.
Prelude Control.Monad> let fn1 =  x-> x * x
Prelude Control.Monad> let fn2 =  x -> x + 33
Prelude Control.Monad> let fns = [fn1, fn2]
Prelude Control.Monad> :t fns
fns :: Num a => [a -> a]
Prelude Control.Monad> let nums = [1,2,3,4]
Prelude Control.Monad> :t nums
nums :: Num t => [t]
Prelude Control.Monad> fns <*> nums
jlgarhdez HaskellMADpepegar
A small example
As an example of Applicative Programming, let’s see how Applicative and
Monadic styles compare:
jlgarhdez HaskellMADpepegar
A small example
data Person = Person {
name :: String,
lastName :: String
} deriving Show
data Err = String
validateName :: String -> Either Err String
validateName n = if n == "Pepe" then Right n
else Left "name is not Pepe"
validateLastName :: String -> Either Err String
validateLastName l = if l == "García" then Right l
else Left "last name is not García"
jlgarhdez HaskellMADpepegar
A small example. Monadic
validatePersonM :: String -> String -> Either String Person
validatePersonM n l = do
vName <- validateName n
vLast <- validateLastName l
return $ Person vName vLast
jlgarhdez HaskellMADpepegar
A small example. Applicative
validatePersonA :: String -> String -> Either String Person
validatePersonA n l = Person <$> validateName n <*> validateLastName l
jlgarhdez HaskellMADpepegar
A small example. Applicative (2)
Why does the previous example work? Let’s dig a bit deeper on it:
Prelude> :t Person
Person :: String -> String -> Person
Prelude> :t Person <$> validateName "pepe"
Person <$> validateName "pepe" :: Either String (String -> Person)
Prelude> :t Person <$> validateName "pepe" <*> validateLastName "Garcia"
Person <$> validateName "pepe" <*> validateLastName "Garcia" :: Either String Person
jlgarhdez HaskellMADpepegar
A small example. Recap
So, what do we learn from our small example?
Monads are not a silver bullet, and can be replaced easily by Applicative Functors
when ordering is not important.
jlgarhdez HaskellMADpepegar
When to use applicatives?
When we need more than a functor, and less than a monad…
Sounds appealing, but WTF is this!?
jlgarhdez HaskellMADpepegar
When to use applicatives? Functor
Functor defines containers that can be mapped over.
class Functor f where
fmap :: (a -> b) -> f a -> f b
jlgarhdez HaskellMADpepegar
When to use applicatives? Monad
Monad defines containers allow operation sequencing!
class Monad m where
(>>=) :: m a -> (a -> m b) -> m b
(>>) :: m a -> m b -> m b
return :: a -> m a
fail :: String -> m a
jlgarhdez HaskellMADpepegar
When to use applicatives?
Some rule-o-thumbs I use for detecting Monad overkill
● import Control.Applicative
● replace return with pure, liftM with (<$>) (or fmap or liftA), liftM2 with liftA2,
etc, and ap with (<*>)
● If your function signature was Monad m => ..., change to Applicative m => ...
(and maybe rename m to f or whatever).
jlgarhdez HaskellMADpepegar
When your do block can be substituted by liftM2/3/4...
When to use applicatives?
validatePersonM :: String -> String -> Either String Person
validatePersonM n l = do
vName <- validateName n
vLast <- validateLastName l
return $ Person vName vLast
becomes
validatePersonA :: String -> String -> Either String Person
validatePersonA n l = liftM2 Person $ validateName n $ validateLastName l
jlgarhdez HaskellMADpepegar
When your operations does not depend on each other
When to use applicatives?
validatePersonM :: String -> String -> Either String Person
validatePersonM n l = do
vName <- validateName n
vLast <- validateLastName l
return $ Person vName vLast
becomes
validatePersonA :: String -> String -> Either String Person
validatePersonA n l = Person <$> validateName n <*> validateLastName l
jlgarhdez HaskellMADpepegar
Who uses Applicative?
Applicative is being used all over the place nowadays. Some interesting examples
of its use are:
● HAXL. Efficient data access
● CmdTheLine. Command line argument parsing
● Validation. Data validation library
● Attoparsec. ByteString parsing library
jlgarhdez HaskellMADpepegar
How to use Applicatives?
@jlgarhdez
Applicatives are really easy to use. You just need to provide an instance of the
typeclass for your data type.
data Maybe a = Just a
| Nothing
instance Applicative Maybe where
pure = Just
Just f <*> m = fmap f m
Nothing <*> _m = Nothing
jlgarhdez HaskellMADpepegar
Or, you can go Free!
jlgarhdez HaskellMADpepegar
Free Applicatives
Create an applicative from any Functor
jlgarhdez HaskellMADpepegar
Free Applicatives.
data Ap f a where
Pure :: a -> Ap f a
Ap :: f a -> Ap f (a -> b) -> Ap f b
@jlgarhdez
jlgarhdez HaskellMADpepegar
Free Applicatives.
instance Functor (Ap f) where
fmap f (Pure a) = Pure (f a)
fmap f (Ap x y) = Ap x ((f .) <$> y)
instance Apply (Ap f) where
Pure f <.> y = fmap f y
Ap x y <.> z = Ap x (flip <$> y <.> z)
instance Applicative (Ap f) where
pure = Pure
Pure f <*> y = fmap f y
Ap x y <*> z = Ap x (flip <$> y <*> z)
@jlgarhdez
jlgarhdez HaskellMADpepegar
Free applicatives
@jlgarhdez
Now let’s create a small ADT and create a Free Applicative out of it!
import Control.Applicative.Free
import Control.Applicative
type Author = String
type Post = String
type Id = String
data BlogF a where
GetPost :: Id -> BlogF Post
GetAuthor :: Id -> BlogF Author
type Blog a = Ap BlogF a
jlgarhdez HaskellMADpepegar
And a bit of syntax…
getPost :: Id -> Blog Post
getPost id = liftAp $ GetPost id
getAuthor :: Id -> Blog Author
getAuthor id = liftAp $ GetAuthor id
Free applicatives
@jlgarhdez
jlgarhdez HaskellMADpepegar
Free applicatives
@jlgarhdez
Now, we might want to render a page of our blog:
data Page = Page {
post :: Post,
author :: Author
} deriving Show
jlgarhdez HaskellMADpepegar
Now, let’s do Applicative magic!
jlgarhdez HaskellMADpepegar
Free applicatives
@jlgarhdez
With all we have already learned, how would you implement the following?
renderPage :: Id -> Id -> Blog Page
jlgarhdez HaskellMADpepegar
Free applicatives
@jlgarhdez
With all we have already learned, how would you implement the following?
renderPage :: Id -> Id -> Blog Page
renderPage postId authorId = Page <$> getPost postId
<*> getAuthor authorId
jlgarhdez HaskellMADpepegar
jlgarhdez HaskellMADpepegar
But we are not doing anything in that
renderPage function
jlgarhdez HaskellMADpepegar
Let’s do, let’s interpret!
jlgarhdez HaskellMADpepegar
Free applicatives
@jlgarhdez
First, we need an interpreter. This interpreter is called Natural Transformation in
Category Theory, and transforms a value `f a` into a `g a`.
interpIO :: BlogF a -> IO a
interpIO (GetPost id) = putStrLn ("getting post " ++ show id ++ " from DB") *> pure "this is the post"
interpIO (GetAuthor id) = putStrLn ("getting author " ++ show id ++ " from DB") *> pure "Pepe García"
jlgarhdez HaskellMADpepegar
Free applicatives
@jlgarhdez
And, last but not least, wire everything together:
main :: IO ()
main = do
page <- runAp interpIO $ renderPage 1 1
print page
jlgarhdez HaskellMADpepegar
Abstract Syntax Trees
As you know, the most important part of functional programming is referential
transparency. This means creating values, not executing effects.
That’s what our free applicatives does, they create little programs, or Abstract
Syntax Trees
jlgarhdez HaskellMADpepegar
Applicatives AST
As you imagine from our
implementation, this Blog does
nothing, just create values. It does
not go to the DB to fetch
users/posts/whatever.
It just creates what is called an
Abstract Syntax Tree
jlgarhdez HaskellMADpepegar
Monadic AST
And, if we compare this AST with the
one created by its monadic
counterpart, implemented in terms of
monadic bind, we can see something
interesting.
We need to evaluate getPost 1 in
order to evaluate getAuthor 1
jlgarhdez HaskellMADpepegar
Applicative AST. Static Analysis
@jlgarhdez
Applicative functors’ ASTs allow you to explore them from the top down without
evaluating a single line of code! This technique is called static analysis, and is
awesome for:
● Optimizing performance (deduplicate requests, in a series of HTTP requests)
● Calculate dependencies automatically
● Lint your code
jlgarhdez HaskellMADpepegar
Static Analysis
Analysis of a program that does not evaluate the program.
It is possible with our Applicatives!
jlgarhdez HaskellMADpepegar
Static Analysis
@jlgarhdez
To demonstrate static analysis, let’s keep with our blog example:
data BlogF a where
GetPost :: Id -> BlogF Post
GetAuthor :: Id -> BlogF Author
GetComments :: Id -> BlogF [(Comment, Author)]
type Blog a = Ap BlogF a
jlgarhdez HaskellMADpepegar
Static Analysis
@jlgarhdez
Also some convenience functions:
getPost :: Id -> Blog Post
getPost id = liftAp $ GetPost id
getAuthor :: Id -> Blog Author
getAuthor id = liftAp $ GetAuthor id
getComments :: Id -> Blog [(Comment, Author)]
getComments id = liftAp $ GetComments id
jlgarhdez HaskellMADpepegar
Static Analysis
@jlgarhdez
Then, our renderPage would look like this:
renderPage :: Id -> Id -> Blog Page
renderPage post author = Page <$> getPost post
<*> getAuthor author
<*> getComments post
jlgarhdez HaskellMADpepegar
Static Analysis
@jlgarhdez
And, as explained before, we will need to interpret the AST
interpIO :: BlogF a -> IO a
interpIO (GetPost id) = putStrLn ("getting post " ++ show id ++ " from DB") *> pure "this is the
post"
interpIO (GetAuthor id) = putStrLn ("getting author " ++ show id ++ " from DB") *> pure "@pepe"
interpIO (GetComments id) = putStrLn ("getting comments for post " ++ show id ++ " from DB")
*> pure [
("this post rocks" , "@anler"),
("you're right, @anler" , "@lorenzo"),
("Oh boy, I love haskell so bad!" , "@dani"),
("Indeed, Haskell is better than Erlang!" , "@joseluis" )
]
jlgarhdez HaskellMADpepegar
Static Analysis
@jlgarhdez
But, the most amazing thing is that we can calculate the number of operations that
our renderProgram does, for example:
instance Monoid Int where
mempty = 0
mappend = (+)
countInstructions :: BlogF a -> Int
countInstructions _ = 1
jlgarhdez HaskellMADpepegar
Static Analysis
@jlgarhdez
But, the most amazing thing is that we can calculate the number of operations that
our renderProgram does, for example:
main :: IO ()
main = do
putStrLn "NUMBER OF REQUESTS TO THE DB:"
print instructions
putStrLn ""
putStrLn "PAGE RENDERING:"
page <- runAp interpIO page
print page
where instructions = runAp_ countInstructions page
page = renderPage 1 1
jlgarhdez HaskellMADpepegar
Composing Applicative
Functors
Unlike Monads, our Applicatives are closed on composition. This means that you
can provide an instance of Applicative for the product of any other two
applicatives!
jlgarhdez HaskellMADpepegar
Composing Applicative Functors
@jlgarhdez
data Product m n a = Product {
first :: m a,
second :: n a
}
instance (Functor m, Functor n) => Functor (Product m n) where
fmap f fa = Product (f <$> first fa) (f <$> second fa)
instance (Applicative m, Applicative n) => Applicative (Product m n) where
pure x = Product (pure x) (pure x)
mf <*> mx = Product (first mf <*> first mx) (second mf <*> second mx)
jlgarhdez HaskellMADpepegar
Applicative Do Notation
Created at Facebook, ApplicativeDo extension allows you to write Applicative
Code in a more familiar fashion, if you come from imperative programming.
jlgarhdez HaskellMADpepegar
{-# LANGUAGE ApplicativeDo #-}
renderPage :: Id -> Id -> Blog Page
renderPage postId authorId = do
post <- getPost postId
author <- getAuthor authorId
return $ Page post author
ApplicativeDo
@jlgarhdez
jlgarhdez HaskellMADpepegar
Recap
jlgarhdez HaskellMADpepegar
Recap
● Use more applicatives, they DO ROCK!
● Always separate domain modelling from interpretation (with free applicatives)
● Eliminate boilerplate with meta-programming (with static analysis)
● Keep writing your code in do-block style (with ApplicativeDo)
● Have fun!
● Bonus point: Convince your boss to use Haskell!
jlgarhdez HaskellMADpepegar
Bibliography
● Idioms: applicative programming with effects. McBride, Paterson
● The Essence of the Iterator Pattern. Gibbons, Oliveira
● Origami programming. Gibbons
● Static Analysis with Applicatives. Gergő Érdi
jlgarhdez HaskellMADpepegar
Applicative style programming
Applicative style programming

More Related Content

ODP
Functors, Applicatives and Monads In Scala
PDF
One Monad to Rule Them All
PDF
Functional Programming 101 with Scala and ZIO @FunctionalWorld
PPTX
Running Free with the Monads
PPTX
ZIO: Powerful and Principled Functional Programming in Scala
PPTX
Purely Functional Data Structures in Scala
PPTX
Taking your side effects aside
PDF
ZIO-Direct - Functional Scala 2022
Functors, Applicatives and Monads In Scala
One Monad to Rule Them All
Functional Programming 101 with Scala and ZIO @FunctionalWorld
Running Free with the Monads
ZIO: Powerful and Principled Functional Programming in Scala
Purely Functional Data Structures in Scala
Taking your side effects aside
ZIO-Direct - Functional Scala 2022

What's hot (20)

PDF
Let's make a contract: the art of designing a Java API
PDF
Monoids - Part 1 - with examples using Scalaz and Cats
PDF
Java 8 Lambda Built-in Functional Interfaces
PDF
Laziness, trampolines, monoids and other functional amenities: this is not yo...
PPT
Inheritance OOP Concept in C++.
PPTX
Category theory for beginners
PPTX
Capabilities for Resources and Effects
PDF
Exploring ZIO Prelude: The game changer for typeclasses in Scala
PDF
The Functional Programming Triad of Folding, Scanning and Iteration - a first...
PDF
Contravariant functors in scala
PPT
Java 8 Streams
PPSX
Collections - Maps
PDF
Deep dive into Coroutines on JVM @ KotlinConf 2017
PDF
ZIO Queue
PPTX
Introduction to ParSeq: to make asynchronous java easier
PDF
07 java collection
PDF
Sequence and Traverse - Part 1
PDF
Functional Programming Patterns (BuildStuff '14)
PDF
Collections Api - Java
PDF
Preparing for Scala 3
Let's make a contract: the art of designing a Java API
Monoids - Part 1 - with examples using Scalaz and Cats
Java 8 Lambda Built-in Functional Interfaces
Laziness, trampolines, monoids and other functional amenities: this is not yo...
Inheritance OOP Concept in C++.
Category theory for beginners
Capabilities for Resources and Effects
Exploring ZIO Prelude: The game changer for typeclasses in Scala
The Functional Programming Triad of Folding, Scanning and Iteration - a first...
Contravariant functors in scala
Java 8 Streams
Collections - Maps
Deep dive into Coroutines on JVM @ KotlinConf 2017
ZIO Queue
Introduction to ParSeq: to make asynchronous java easier
07 java collection
Sequence and Traverse - Part 1
Functional Programming Patterns (BuildStuff '14)
Collections Api - Java
Preparing for Scala 3
Ad

Viewers also liked (20)

PDF
Social media (ICT Month)
PDF
Instal·lació solar aïllada
PPT
Sol Talks n.7
PDF
2ª Sesión Aprende a Cuidarte: Doctor estoy infoxicado, ¿es grave? Prevención,...
PDF
Grow digital
PPT
Weblogs
PDF
Real Photography
PDF
Bitcoin: salto tecnológico en los sistemas de pago
PPT
Enfermedad de cutting
PDF
Presentación t2.pptx a 1per audi
PDF
Machine Learning Concepts for Software Monitoring - Lior Redlus, Coralogix - ...
PDF
Solinex
PDF
ELIX Viviendas con encanto
PDF
Returns basedstyleanalysisinexcel mcdermott
PDF
The 2012 Channel Marketing Preference Survey
PPTX
Trabajo y economia humana
PDF
Software Libre/Código Abierto - Enunciado
PDF
SEO Audit Workshop: Framework, Techniques And Tools
PDF
Criterio y funcionamiento de un sniffer (cain & abel) (www.dragon jar.us)
PDF
Ha 2000 Anos
Social media (ICT Month)
Instal·lació solar aïllada
Sol Talks n.7
2ª Sesión Aprende a Cuidarte: Doctor estoy infoxicado, ¿es grave? Prevención,...
Grow digital
Weblogs
Real Photography
Bitcoin: salto tecnológico en los sistemas de pago
Enfermedad de cutting
Presentación t2.pptx a 1per audi
Machine Learning Concepts for Software Monitoring - Lior Redlus, Coralogix - ...
Solinex
ELIX Viviendas con encanto
Returns basedstyleanalysisinexcel mcdermott
The 2012 Channel Marketing Preference Survey
Trabajo y economia humana
Software Libre/Código Abierto - Enunciado
SEO Audit Workshop: Framework, Techniques And Tools
Criterio y funcionamiento de un sniffer (cain & abel) (www.dragon jar.us)
Ha 2000 Anos
Ad

Similar to Applicative style programming (20)

PDF
Free your lambdas
PDF
Logstash-Elasticsearch-Kibana
PDF
Free your lambdas
PDF
Writing a REST Interconnection Library in Swift
PDF
DEFUN 2008 - Real World Haskell
PPT
Easy R
PPT
course slides -- powerpoint
PPTX
Lambdas puzzler - Peter Lawrey
PDF
The... Wonderful? World of Lambdas
PPT
PHP 5.3 Part 2 - Lambda Functions & Closures
PDF
Phpをいじり倒す10の方法
PDF
TWINS: OOP and FP - Warburton
PDF
Twins: Object Oriented Programming and Functional Programming
PDF
Real World Haskell: Lecture 7
ODP
Practical catalyst
PDF
Mist - Serverless proxy to Apache Spark
PDF
Data Summer Conf 2018, “Mist – Serverless proxy for Apache Spark (RUS)” — Vad...
PDF
Effective PHP. Part 5
PDF
Java 8
PPTX
Java 8 presentation
Free your lambdas
Logstash-Elasticsearch-Kibana
Free your lambdas
Writing a REST Interconnection Library in Swift
DEFUN 2008 - Real World Haskell
Easy R
course slides -- powerpoint
Lambdas puzzler - Peter Lawrey
The... Wonderful? World of Lambdas
PHP 5.3 Part 2 - Lambda Functions & Closures
Phpをいじり倒す10の方法
TWINS: OOP and FP - Warburton
Twins: Object Oriented Programming and Functional Programming
Real World Haskell: Lecture 7
Practical catalyst
Mist - Serverless proxy to Apache Spark
Data Summer Conf 2018, “Mist – Serverless proxy for Apache Spark (RUS)” — Vad...
Effective PHP. Part 5
Java 8
Java 8 presentation

Recently uploaded (20)

PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Nekopoi APK 2025 free lastest update
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
Essential Infomation Tech presentation.pptx
PDF
System and Network Administration Chapter 2
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PPTX
Transform Your Business with a Software ERP System
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
top salesforce developer skills in 2025.pdf
PPTX
ai tools demonstartion for schools and inter college
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
wealthsignaloriginal-com-DS-text-... (1).pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Nekopoi APK 2025 free lastest update
Odoo Companies in India – Driving Business Transformation.pdf
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Navsoft: AI-Powered Business Solutions & Custom Software Development
Adobe Illustrator 28.6 Crack My Vision of Vector Design
How to Migrate SBCGlobal Email to Yahoo Easily
Operating system designcfffgfgggggggvggggggggg
Essential Infomation Tech presentation.pptx
System and Network Administration Chapter 2
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
How Creative Agencies Leverage Project Management Software.pdf
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Transform Your Business with a Software ERP System
Design an Analysis of Algorithms II-SECS-1021-03
Internet Downloader Manager (IDM) Crack 6.42 Build 41
top salesforce developer skills in 2025.pdf
ai tools demonstartion for schools and inter college

Applicative style programming

  • 2. Pepe García Scala Engineer @ Fidesmo Co-organizer @ HaskellMad & FP-MAD Scala fan Haskell Acolyth Functional Programming Devotee jlgarhdez HaskellMADpepegar
  • 3. About this talk Slides are available here: http://es.slideshare.net/JosLuisGarcaHernndez/applicative-style-programming Code is available here: https://github.com/pepegar/Control.Applicative.Talk jlgarhdez HaskellMADpepegar
  • 4. What are we learning today? ● What are applicatives? ● When do we use them? ● Who is using them? ● How to use them? jlgarhdez HaskellMADpepegar
  • 6. What are applicatives? Applicatives are an abstraction between functions and monads. And they open the doors for the so called applicative style! jlgarhdez HaskellMADpepegar
  • 7. What are applicatives? @jlgarhdez class Functor f => Applicative f where pure :: a -> f a (<*>) :: f (a -> b) -> f a -> f b jlgarhdez HaskellMADpepegar
  • 8. What are applicatives? Let’s understand the typeclass: It exposes a `pure` function, that puts a value inside the applicative context And a `<*>` function, that applies a function inside an applicative context to the content of another value with the same applicative context jlgarhdez HaskellMADpepegar
  • 9. What are applicatives? Do you remember fmap from functors? Try to compare it with <*> fmap :: (a -> b) -> f a -> f b (<*>) :: f (a -> b) -> f a -> f b jlgarhdez HaskellMADpepegar
  • 10. What are applicatives? Basically an Applicative is a Functor that can also apply a function contained in a container to other container of the same type. Prelude Control.Monad> let fn1 = x-> x * x Prelude Control.Monad> let fn2 = x -> x + 33 Prelude Control.Monad> let fns = [fn1, fn2] Prelude Control.Monad> :t fns fns :: Num a => [a -> a] Prelude Control.Monad> let nums = [1,2,3,4] Prelude Control.Monad> :t nums nums :: Num t => [t] Prelude Control.Monad> fns <*> nums jlgarhdez HaskellMADpepegar
  • 11. A small example As an example of Applicative Programming, let’s see how Applicative and Monadic styles compare: jlgarhdez HaskellMADpepegar
  • 12. A small example data Person = Person { name :: String, lastName :: String } deriving Show data Err = String validateName :: String -> Either Err String validateName n = if n == "Pepe" then Right n else Left "name is not Pepe" validateLastName :: String -> Either Err String validateLastName l = if l == "García" then Right l else Left "last name is not García" jlgarhdez HaskellMADpepegar
  • 13. A small example. Monadic validatePersonM :: String -> String -> Either String Person validatePersonM n l = do vName <- validateName n vLast <- validateLastName l return $ Person vName vLast jlgarhdez HaskellMADpepegar
  • 14. A small example. Applicative validatePersonA :: String -> String -> Either String Person validatePersonA n l = Person <$> validateName n <*> validateLastName l jlgarhdez HaskellMADpepegar
  • 15. A small example. Applicative (2) Why does the previous example work? Let’s dig a bit deeper on it: Prelude> :t Person Person :: String -> String -> Person Prelude> :t Person <$> validateName "pepe" Person <$> validateName "pepe" :: Either String (String -> Person) Prelude> :t Person <$> validateName "pepe" <*> validateLastName "Garcia" Person <$> validateName "pepe" <*> validateLastName "Garcia" :: Either String Person jlgarhdez HaskellMADpepegar
  • 16. A small example. Recap So, what do we learn from our small example? Monads are not a silver bullet, and can be replaced easily by Applicative Functors when ordering is not important. jlgarhdez HaskellMADpepegar
  • 17. When to use applicatives? When we need more than a functor, and less than a monad… Sounds appealing, but WTF is this!? jlgarhdez HaskellMADpepegar
  • 18. When to use applicatives? Functor Functor defines containers that can be mapped over. class Functor f where fmap :: (a -> b) -> f a -> f b jlgarhdez HaskellMADpepegar
  • 19. When to use applicatives? Monad Monad defines containers allow operation sequencing! class Monad m where (>>=) :: m a -> (a -> m b) -> m b (>>) :: m a -> m b -> m b return :: a -> m a fail :: String -> m a jlgarhdez HaskellMADpepegar
  • 20. When to use applicatives? Some rule-o-thumbs I use for detecting Monad overkill ● import Control.Applicative ● replace return with pure, liftM with (<$>) (or fmap or liftA), liftM2 with liftA2, etc, and ap with (<*>) ● If your function signature was Monad m => ..., change to Applicative m => ... (and maybe rename m to f or whatever). jlgarhdez HaskellMADpepegar
  • 21. When your do block can be substituted by liftM2/3/4... When to use applicatives? validatePersonM :: String -> String -> Either String Person validatePersonM n l = do vName <- validateName n vLast <- validateLastName l return $ Person vName vLast becomes validatePersonA :: String -> String -> Either String Person validatePersonA n l = liftM2 Person $ validateName n $ validateLastName l jlgarhdez HaskellMADpepegar
  • 22. When your operations does not depend on each other When to use applicatives? validatePersonM :: String -> String -> Either String Person validatePersonM n l = do vName <- validateName n vLast <- validateLastName l return $ Person vName vLast becomes validatePersonA :: String -> String -> Either String Person validatePersonA n l = Person <$> validateName n <*> validateLastName l jlgarhdez HaskellMADpepegar
  • 23. Who uses Applicative? Applicative is being used all over the place nowadays. Some interesting examples of its use are: ● HAXL. Efficient data access ● CmdTheLine. Command line argument parsing ● Validation. Data validation library ● Attoparsec. ByteString parsing library jlgarhdez HaskellMADpepegar
  • 24. How to use Applicatives? @jlgarhdez Applicatives are really easy to use. You just need to provide an instance of the typeclass for your data type. data Maybe a = Just a | Nothing instance Applicative Maybe where pure = Just Just f <*> m = fmap f m Nothing <*> _m = Nothing jlgarhdez HaskellMADpepegar
  • 25. Or, you can go Free! jlgarhdez HaskellMADpepegar
  • 26. Free Applicatives Create an applicative from any Functor jlgarhdez HaskellMADpepegar
  • 27. Free Applicatives. data Ap f a where Pure :: a -> Ap f a Ap :: f a -> Ap f (a -> b) -> Ap f b @jlgarhdez jlgarhdez HaskellMADpepegar
  • 28. Free Applicatives. instance Functor (Ap f) where fmap f (Pure a) = Pure (f a) fmap f (Ap x y) = Ap x ((f .) <$> y) instance Apply (Ap f) where Pure f <.> y = fmap f y Ap x y <.> z = Ap x (flip <$> y <.> z) instance Applicative (Ap f) where pure = Pure Pure f <*> y = fmap f y Ap x y <*> z = Ap x (flip <$> y <*> z) @jlgarhdez jlgarhdez HaskellMADpepegar
  • 29. Free applicatives @jlgarhdez Now let’s create a small ADT and create a Free Applicative out of it! import Control.Applicative.Free import Control.Applicative type Author = String type Post = String type Id = String data BlogF a where GetPost :: Id -> BlogF Post GetAuthor :: Id -> BlogF Author type Blog a = Ap BlogF a jlgarhdez HaskellMADpepegar
  • 30. And a bit of syntax… getPost :: Id -> Blog Post getPost id = liftAp $ GetPost id getAuthor :: Id -> Blog Author getAuthor id = liftAp $ GetAuthor id Free applicatives @jlgarhdez jlgarhdez HaskellMADpepegar
  • 31. Free applicatives @jlgarhdez Now, we might want to render a page of our blog: data Page = Page { post :: Post, author :: Author } deriving Show jlgarhdez HaskellMADpepegar
  • 32. Now, let’s do Applicative magic! jlgarhdez HaskellMADpepegar
  • 33. Free applicatives @jlgarhdez With all we have already learned, how would you implement the following? renderPage :: Id -> Id -> Blog Page jlgarhdez HaskellMADpepegar
  • 34. Free applicatives @jlgarhdez With all we have already learned, how would you implement the following? renderPage :: Id -> Id -> Blog Page renderPage postId authorId = Page <$> getPost postId <*> getAuthor authorId jlgarhdez HaskellMADpepegar
  • 36. But we are not doing anything in that renderPage function jlgarhdez HaskellMADpepegar
  • 37. Let’s do, let’s interpret! jlgarhdez HaskellMADpepegar
  • 38. Free applicatives @jlgarhdez First, we need an interpreter. This interpreter is called Natural Transformation in Category Theory, and transforms a value `f a` into a `g a`. interpIO :: BlogF a -> IO a interpIO (GetPost id) = putStrLn ("getting post " ++ show id ++ " from DB") *> pure "this is the post" interpIO (GetAuthor id) = putStrLn ("getting author " ++ show id ++ " from DB") *> pure "Pepe García" jlgarhdez HaskellMADpepegar
  • 39. Free applicatives @jlgarhdez And, last but not least, wire everything together: main :: IO () main = do page <- runAp interpIO $ renderPage 1 1 print page jlgarhdez HaskellMADpepegar
  • 40. Abstract Syntax Trees As you know, the most important part of functional programming is referential transparency. This means creating values, not executing effects. That’s what our free applicatives does, they create little programs, or Abstract Syntax Trees jlgarhdez HaskellMADpepegar
  • 41. Applicatives AST As you imagine from our implementation, this Blog does nothing, just create values. It does not go to the DB to fetch users/posts/whatever. It just creates what is called an Abstract Syntax Tree jlgarhdez HaskellMADpepegar
  • 42. Monadic AST And, if we compare this AST with the one created by its monadic counterpart, implemented in terms of monadic bind, we can see something interesting. We need to evaluate getPost 1 in order to evaluate getAuthor 1 jlgarhdez HaskellMADpepegar
  • 43. Applicative AST. Static Analysis @jlgarhdez Applicative functors’ ASTs allow you to explore them from the top down without evaluating a single line of code! This technique is called static analysis, and is awesome for: ● Optimizing performance (deduplicate requests, in a series of HTTP requests) ● Calculate dependencies automatically ● Lint your code jlgarhdez HaskellMADpepegar
  • 44. Static Analysis Analysis of a program that does not evaluate the program. It is possible with our Applicatives! jlgarhdez HaskellMADpepegar
  • 45. Static Analysis @jlgarhdez To demonstrate static analysis, let’s keep with our blog example: data BlogF a where GetPost :: Id -> BlogF Post GetAuthor :: Id -> BlogF Author GetComments :: Id -> BlogF [(Comment, Author)] type Blog a = Ap BlogF a jlgarhdez HaskellMADpepegar
  • 46. Static Analysis @jlgarhdez Also some convenience functions: getPost :: Id -> Blog Post getPost id = liftAp $ GetPost id getAuthor :: Id -> Blog Author getAuthor id = liftAp $ GetAuthor id getComments :: Id -> Blog [(Comment, Author)] getComments id = liftAp $ GetComments id jlgarhdez HaskellMADpepegar
  • 47. Static Analysis @jlgarhdez Then, our renderPage would look like this: renderPage :: Id -> Id -> Blog Page renderPage post author = Page <$> getPost post <*> getAuthor author <*> getComments post jlgarhdez HaskellMADpepegar
  • 48. Static Analysis @jlgarhdez And, as explained before, we will need to interpret the AST interpIO :: BlogF a -> IO a interpIO (GetPost id) = putStrLn ("getting post " ++ show id ++ " from DB") *> pure "this is the post" interpIO (GetAuthor id) = putStrLn ("getting author " ++ show id ++ " from DB") *> pure "@pepe" interpIO (GetComments id) = putStrLn ("getting comments for post " ++ show id ++ " from DB") *> pure [ ("this post rocks" , "@anler"), ("you're right, @anler" , "@lorenzo"), ("Oh boy, I love haskell so bad!" , "@dani"), ("Indeed, Haskell is better than Erlang!" , "@joseluis" ) ] jlgarhdez HaskellMADpepegar
  • 49. Static Analysis @jlgarhdez But, the most amazing thing is that we can calculate the number of operations that our renderProgram does, for example: instance Monoid Int where mempty = 0 mappend = (+) countInstructions :: BlogF a -> Int countInstructions _ = 1 jlgarhdez HaskellMADpepegar
  • 50. Static Analysis @jlgarhdez But, the most amazing thing is that we can calculate the number of operations that our renderProgram does, for example: main :: IO () main = do putStrLn "NUMBER OF REQUESTS TO THE DB:" print instructions putStrLn "" putStrLn "PAGE RENDERING:" page <- runAp interpIO page print page where instructions = runAp_ countInstructions page page = renderPage 1 1 jlgarhdez HaskellMADpepegar
  • 51. Composing Applicative Functors Unlike Monads, our Applicatives are closed on composition. This means that you can provide an instance of Applicative for the product of any other two applicatives! jlgarhdez HaskellMADpepegar
  • 52. Composing Applicative Functors @jlgarhdez data Product m n a = Product { first :: m a, second :: n a } instance (Functor m, Functor n) => Functor (Product m n) where fmap f fa = Product (f <$> first fa) (f <$> second fa) instance (Applicative m, Applicative n) => Applicative (Product m n) where pure x = Product (pure x) (pure x) mf <*> mx = Product (first mf <*> first mx) (second mf <*> second mx) jlgarhdez HaskellMADpepegar
  • 53. Applicative Do Notation Created at Facebook, ApplicativeDo extension allows you to write Applicative Code in a more familiar fashion, if you come from imperative programming. jlgarhdez HaskellMADpepegar
  • 54. {-# LANGUAGE ApplicativeDo #-} renderPage :: Id -> Id -> Blog Page renderPage postId authorId = do post <- getPost postId author <- getAuthor authorId return $ Page post author ApplicativeDo @jlgarhdez jlgarhdez HaskellMADpepegar
  • 56. Recap ● Use more applicatives, they DO ROCK! ● Always separate domain modelling from interpretation (with free applicatives) ● Eliminate boilerplate with meta-programming (with static analysis) ● Keep writing your code in do-block style (with ApplicativeDo) ● Have fun! ● Bonus point: Convince your boss to use Haskell! jlgarhdez HaskellMADpepegar
  • 57. Bibliography ● Idioms: applicative programming with effects. McBride, Paterson ● The Essence of the Iterator Pattern. Gibbons, Oliveira ● Origami programming. Gibbons ● Static Analysis with Applicatives. Gergő Érdi jlgarhdez HaskellMADpepegar