SlideShare a Scribd company logo
1 of 63
Deconstructing Functional
Programming
Gilad Bracha

Wednesday, November 13, 13
Watch the video with slide
synchronization on InfoQ.com!
http://www.infoq.com/presentations
/functional-pros-cons

InfoQ.com: News & Community Site
• 750,000 unique visitors/month
• Published in 4 languages (English, Chinese, Japanese and Brazilian
Portuguese)
• Post content from our QCon conferences
• News 15-20 / week
• Articles 3-4 / week
• Presentations (videos) 12-15 / week
• Interviews 2-3 / week
• Books 1 / month
Presented at QCon San Francisco
www.qconsf.com
Purpose of QCon
- to empower software development by facilitating the spread of
knowledge and innovation
Strategy
- practitioner-driven conference designed for YOU: influencers of
change and innovation in your teams
- speakers and topics driving the evolution and innovation
- connecting and catalyzing the influencers and innovators
Highlights
- attended by more than 12,000 delegates since 2007
- held in 9 cities worldwide
The Heart of Darkness

Wednesday, November 13, 13
What is Functional
Programming?
Definitions vary, but tend to involve
Higher order functions (HOFs)
Absence of effects

Wednesday, November 13, 13
Higher Order Functions
Functions are values
Can be passed as arguments and returned as results
Function literals are expressions that can be written
anywhere an expression can appear

Wednesday, November 13, 13
Languages with HOFs

Smalltalk, Self, Newspeak, Dart, Javascript ... and now
even Java (gasp)

Wednesday, November 13, 13
Languages with Effects

Lisp, Scheme, Racket, Clojure, ML, OCaml, F#, Erlang

Wednesday, November 13, 13
Languages w/o HOFs

Backus’ FP, SISAL, the original versions of Erlang ...
These are functional languages; in fact FP was the
original functional language

Wednesday, November 13, 13
What is Functional
Programming?
1. A style which utilizes HOFs and minimizes effects
2. A cult(ure)
3. All of the above
In particular, there is no contradiction with object
orientation (see Scala as an example)

Wednesday, November 13, 13
HOFs/Closures
HOFs are awesome. Lambdas even more so.
The great classical HOFs: map, filter, reduce
They’ve been around since Lisp & Smalltalk (i.e., long
before the term FP was introduced)

Wednesday, November 13, 13
User-defined Control
Structures

a > b ifTrue:[ a - b].

Wednesday, November 13, 13
User-defined Control
Structures

a > b ifTrue:[ a - b].
A boolean, an object, the target of ...

Wednesday, November 13, 13
User-defined Control
Structures

a > b ifTrue:[ a - b].
The method, invoked with ...

Wednesday, November 13, 13
User-defined Control
Structures

a > b ifTrue:[ a - b].
The argument, a block/lambda/closure

Wednesday, November 13, 13
User-defined Control
Structures
a > b ifTrue:[ a - b].
In class True, ifTrue: evaluates its argument and returns
the result.
In class False, ifTrue: returns nil.

Wednesday, November 13, 13
Tail Calls
Look ma, no loops:
while(b, s) { if b() then {s(); while(b,s)} else null}
How to express computation unbounded in time but
bounded in space.
A language is functional if it supports proper tail calls?

Wednesday, November 13, 13
Tail Calls
What about debugging? Where’s my stack trace?

http://gbracha.blogspot.com/2009/12/chased-byones-own-tail.html

Wednesday, November 13, 13
Hindley-Milner

If it typechecks, it works .... ?
But error messages are terrible
Leaks implementation information

Wednesday, November 13, 13
Currying
All functions take one argument, produce one result
Extremely compositional, BUT
We lose almost all structure
Forced to rely on type system

Wednesday, November 13, 13
Pattern Matching
Nice
Allows FPLs to pretend they don’t do dynamic typechecks
and casts
Usually second class
First class patterns are interesting
http://gbracha.blogspot.com/2010/05/patterns-of-dynamic-typechecking.html
http://gbracha.blogspot.com/2010/06/patterns-as-objects-in-newspeak.html

Wednesday, November 13, 13
Monads

Wednesday, November 13, 13
A Monad by any other name
would smell ...

Wednesday, November 13, 13
A Monad by any other name
would smell as sweet

Wednesday, November 13, 13
Ye Highlands and ye Lowlands,
Oh, where hae ye been?
They hae slain the Earl O' Moray,
And laid him on the green.
The Bonny Earl O’Moray

Wednesday, November 13, 13
Ye Highlands and ye Lowlands,
Oh, where hae ye been?
They hae slain the Earl O' Moray,
And Lady Mondegreen.
The Bonny Earl O’Moray, revised by Sylvia Wright

Wednesday, November 13, 13
Ye Highlands and ye Lowlands,
Oh, where hae ye been?
They hae slain the Earl O' Moray,
And Lady Monadgreen.
The Bonny Earl O’Moray, revised by me

Wednesday, November 13, 13
Monad Metaphors, aka
Monadgreens
Nuclear waste containers
Romantic conquests
Space Suits
Monsters
Macros
Containers
Conversations
Black holes
Wednesday, November 13, 13
Lady Monadgreen’s Curse

Once you understand monads, you immediately
become incapable of explaining them to anyone else

Wednesday, November 13, 13
Monads

http://gbracha.blogspot.com/2011/01/maybemonads-might-not-matter.html

Wednesday, November 13, 13
abstract class FlatMappable {
FlatMappable(a);
flatMap(f);
}

Wednesday, November 13, 13
abstract class Monad {
Monad(a);
flatMap(f);
}

Wednesday, November 13, 13
abstract class Monad {
Monad.unit(a);
flatMap(f);
}

Wednesday, November 13, 13
abstract class Monad {
Monad.return(a);
flatMap(f);
}

Wednesday, November 13, 13
abstract class Monad {
Monad.return(a);
bind(f);
}

Wednesday, November 13, 13
abstract class Monad {
Monad.return(a);
operator * (f);
}

Wednesday, November 13, 13
abstract class Monad {
Monad.return(a);
operator >>= (f);
}

Wednesday, November 13, 13
abstract class FlatMappable {
FlatMappable(a);
flatMap(f); // map, then flatten
}

Wednesday, November 13, 13
abstract class Mappable {
Mappable(a);
map(f);
}
abstract class MappableAndFlattenable
extends Mappable {
MappableAndFlattenable(a): super(a);
flatten();
}
Wednesday, November 13, 13
abstract class FlatMappable extends
MappableAndFlattenable {
FlatMappable(a): super(a);
flatMap(f) => map(f).flatten();
}

Wednesday, November 13, 13
What’s the Contract Like?
Sample Clause:
new Mappable(x).map(f) ==
new Mappable( f(x));

Wednesday, November 13, 13
What’s the Contract Like?
Sample Clause:
new FlatMappable(x).flatMap(f) == f(x);

Wednesday, November 13, 13
What’s the Contract Like?
Sample Clause:
new C(x).flatMap(f) == f(x);
for any class C that implements the contract

Wednesday, November 13, 13
The Whole Contract
new C(x).flatMap(f) == f(x);
c.flatMap((x)=> new C(x)) == c;
c.flatMap((x)=> f(x).flatMap(g)) ==
c.flatMap(f).flatMap(g);

Wednesday, November 13, 13
FlatMappable is more useful
than you think

Collections of all kinds: in-memory, databases, streams
“Singleton collections”: functions, continuations, futures

Wednesday, November 13, 13
A simple expression

e.b.c
what could possibly go wrong?

Wednesday, November 13, 13
A simple expression
e.b.c
what could possibly go wrong?
e could be null. Ok
e == null ? null : e.b.c

Wednesday, November 13, 13
A simple expression
e.b.c
what could possibly go wrong?
e could be null. Ok
e == null ? null : e.b.c
oops, e.b could be null
e == null ? null : e.b == null ? null : e.b.c

Wednesday, November 13, 13
A simple expression
e == null ? null : e.b == null ? null : e.b.c
what about side effects?
(var it = e) == null ?
null :
(var ab = it.b) == null ?
null :
ab.c
Wednesday, November 13, 13
Safe Navigation Operator
e?.b?.c
e?.id(a1, .. an) is sugar for
e.ifNotNull((x) => x.id(a1, .. an))
where we define
class Object {
ifNotNull(f) => this == null ? null : f(this);
}

Wednesday, November 13, 13
Promise Pipelining
e <- id(a1, .. an) is sugar for
e.then((x) => x.id(a1, .. an))
where we define
class Object {
then(f) => f(this);
}

Wednesday, November 13, 13
Safe Promise Pipelining
e <- id(a1, .. an) is sugar for
e.then((x) => x.id(a1, .. an))
where we define
class Object {
then(f) => this == null ? null : f(this);
}

Wednesday, November 13, 13
Async message pipelining
e <- id(a1, .. an) is sugar for
e.then((x) => x.id(a1, .. an))
where we define
class Object {
then(f) => Future.immediate(this).then(f);
}

Wednesday, November 13, 13
Scalar operators extended
pointwise to collections
e.* id(a1, .. an) is sugar for
e.map((x) => x.id(a1, .. an))
where we define
class Object {
map(f) => f(this);
}
[‘abc’, ‘de’, ‘wxyz’].* length evaluates to [3, 2, 4]
Wednesday, November 13, 13
Scalar operators extended
pointwise to collections
e.* id(a1, .. an) is sugar for
e.map((x) => x.id(a1, .. an))
where we define
class Object {
map(f) => this == null ? null : f(this);
}
[‘abc’, null, ‘wxyz’].* length evaluates to [3, null, 4]
Wednesday, November 13, 13
Stream transformers

mouseclicks.* x

Wednesday, November 13, 13
Is There a Pattern Here?
The Curse of the Monadgreens prevents me from
discussing this further
In practice, we see generalizations of set notation
rather than navigation
LINQ is an example. However, you didn’t need to have
even heard of monads to invent LINQ. Just look at
Smalltalk’s collection API, Glorp etc.
http://gbracha.blogspot.com/2011/01/maybemonads-might-not-matter.html
Wednesday, November 13, 13
The Killer App for FP?

Wednesday, November 13, 13
Wednesday, November 13, 13
The Killer App for FP?

Live Programming
http://gbracha.blogspot.com/2012/11/debug-mode-is-only-mode.html
http://gbracha.blogspot.com/2013/04/making-methods-live.html
https://www.youtube.com/watch?v=74WqdS_58uY

Wednesday, November 13, 13
Summary
Much to learn from FP
FP and OOP are often complementary
Filter out propaganda
Separate cultural baggage from core values

Wednesday, November 13, 13
The Newspeak eye
on slide 5 was designed by
Victoria Bracha and is used by permission.

The cartoon on slide 2 comes from http://xkcd.com/
1270/ and is licensed by xkcd.com under http://
creativecommons.org/licenses/by-nc/2.5/
The rose on slide 16 is by Kikuo Teranishi and licensed
under http://creativecommons.org/licenses/by-sa/3.0/
deed.en

Wednesday, November 13, 13
Watch the video with slide synchronization on
InfoQ.com!
http://www.infoq.com/presentations/functional
-pros-cons

More Related Content

Similar to Deconstructing Functional Programming

Rupy2012 ArangoDB Workshop Part1
Rupy2012 ArangoDB Workshop Part1Rupy2012 ArangoDB Workshop Part1
Rupy2012 ArangoDB Workshop Part1
ArangoDB Database
 
실시간 웹 협업도구 만들기 V0.3
실시간 웹 협업도구 만들기 V0.3실시간 웹 협업도구 만들기 V0.3
실시간 웹 협업도구 만들기 V0.3
NAVER D2
 
Ks2009 Semanticweb In Action
Ks2009 Semanticweb In ActionKs2009 Semanticweb In Action
Ks2009 Semanticweb In Action
Rinke Hoekstra
 

Similar to Deconstructing Functional Programming (20)

Invitation to Scala
Invitation to ScalaInvitation to Scala
Invitation to Scala
 
First Ride on Rust
First Ride on RustFirst Ride on Rust
First Ride on Rust
 
Dig1108 Lesson 3
Dig1108 Lesson 3Dig1108 Lesson 3
Dig1108 Lesson 3
 
Localizing iOS Apps
Localizing iOS AppsLocalizing iOS Apps
Localizing iOS Apps
 
Municipal Government Meets NoSQL
Municipal Government Meets NoSQLMunicipal Government Meets NoSQL
Municipal Government Meets NoSQL
 
The Not Java That's Not Scala
The Not Java That's Not ScalaThe Not Java That's Not Scala
The Not Java That's Not Scala
 
Rupy2012 ArangoDB Workshop Part1
Rupy2012 ArangoDB Workshop Part1Rupy2012 ArangoDB Workshop Part1
Rupy2012 ArangoDB Workshop Part1
 
StORM preview
StORM previewStORM preview
StORM preview
 
Effective Scala @ Jfokus
Effective Scala @ JfokusEffective Scala @ Jfokus
Effective Scala @ Jfokus
 
Elasticsearch – mye mer enn søk! [JavaZone 2013]
Elasticsearch – mye mer enn søk! [JavaZone 2013]Elasticsearch – mye mer enn søk! [JavaZone 2013]
Elasticsearch – mye mer enn søk! [JavaZone 2013]
 
Scala - Java2Days Sofia
Scala - Java2Days SofiaScala - Java2Days Sofia
Scala - Java2Days Sofia
 
Why Haskell
Why HaskellWhy Haskell
Why Haskell
 
Semantic Pipes (London Perl Workshop 2009)
Semantic Pipes (London Perl Workshop 2009)Semantic Pipes (London Perl Workshop 2009)
Semantic Pipes (London Perl Workshop 2009)
 
03 introduction to graph databases
03   introduction to graph databases03   introduction to graph databases
03 introduction to graph databases
 
실시간 웹 협업도구 만들기 V0.3
실시간 웹 협업도구 만들기 V0.3실시간 웹 협업도구 만들기 V0.3
실시간 웹 협업도구 만들기 V0.3
 
Ks2009 Semanticweb In Action
Ks2009 Semanticweb In ActionKs2009 Semanticweb In Action
Ks2009 Semanticweb In Action
 
Introduction to ansible
Introduction to ansibleIntroduction to ansible
Introduction to ansible
 
Ai 02
Ai 02Ai 02
Ai 02
 
Baking Delicious Modularity in Scala
Baking Delicious Modularity in ScalaBaking Delicious Modularity in Scala
Baking Delicious Modularity in Scala
 
Recommender Systems with Ruby (adding machine learning, statistics, etc)
Recommender Systems with Ruby (adding machine learning, statistics, etc)Recommender Systems with Ruby (adding machine learning, statistics, etc)
Recommender Systems with Ruby (adding machine learning, statistics, etc)
 

More from C4Media

More from C4Media (20)

Streaming a Million Likes/Second: Real-Time Interactions on Live Video
Streaming a Million Likes/Second: Real-Time Interactions on Live VideoStreaming a Million Likes/Second: Real-Time Interactions on Live Video
Streaming a Million Likes/Second: Real-Time Interactions on Live Video
 
Next Generation Client APIs in Envoy Mobile
Next Generation Client APIs in Envoy MobileNext Generation Client APIs in Envoy Mobile
Next Generation Client APIs in Envoy Mobile
 
Software Teams and Teamwork Trends Report Q1 2020
Software Teams and Teamwork Trends Report Q1 2020Software Teams and Teamwork Trends Report Q1 2020
Software Teams and Teamwork Trends Report Q1 2020
 
Understand the Trade-offs Using Compilers for Java Applications
Understand the Trade-offs Using Compilers for Java ApplicationsUnderstand the Trade-offs Using Compilers for Java Applications
Understand the Trade-offs Using Compilers for Java Applications
 
Kafka Needs No Keeper
Kafka Needs No KeeperKafka Needs No Keeper
Kafka Needs No Keeper
 
High Performing Teams Act Like Owners
High Performing Teams Act Like OwnersHigh Performing Teams Act Like Owners
High Performing Teams Act Like Owners
 
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to JavaDoes Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
 
Service Meshes- The Ultimate Guide
Service Meshes- The Ultimate GuideService Meshes- The Ultimate Guide
Service Meshes- The Ultimate Guide
 
Shifting Left with Cloud Native CI/CD
Shifting Left with Cloud Native CI/CDShifting Left with Cloud Native CI/CD
Shifting Left with Cloud Native CI/CD
 
CI/CD for Machine Learning
CI/CD for Machine LearningCI/CD for Machine Learning
CI/CD for Machine Learning
 
Fault Tolerance at Speed
Fault Tolerance at SpeedFault Tolerance at Speed
Fault Tolerance at Speed
 
Architectures That Scale Deep - Regaining Control in Deep Systems
Architectures That Scale Deep - Regaining Control in Deep SystemsArchitectures That Scale Deep - Regaining Control in Deep Systems
Architectures That Scale Deep - Regaining Control in Deep Systems
 
ML in the Browser: Interactive Experiences with Tensorflow.js
ML in the Browser: Interactive Experiences with Tensorflow.jsML in the Browser: Interactive Experiences with Tensorflow.js
ML in the Browser: Interactive Experiences with Tensorflow.js
 
Build Your Own WebAssembly Compiler
Build Your Own WebAssembly CompilerBuild Your Own WebAssembly Compiler
Build Your Own WebAssembly Compiler
 
User & Device Identity for Microservices @ Netflix Scale
User & Device Identity for Microservices @ Netflix ScaleUser & Device Identity for Microservices @ Netflix Scale
User & Device Identity for Microservices @ Netflix Scale
 
Scaling Patterns for Netflix's Edge
Scaling Patterns for Netflix's EdgeScaling Patterns for Netflix's Edge
Scaling Patterns for Netflix's Edge
 
Make Your Electron App Feel at Home Everywhere
Make Your Electron App Feel at Home EverywhereMake Your Electron App Feel at Home Everywhere
Make Your Electron App Feel at Home Everywhere
 
The Talk You've Been Await-ing For
The Talk You've Been Await-ing ForThe Talk You've Been Await-ing For
The Talk You've Been Await-ing For
 
Future of Data Engineering
Future of Data EngineeringFuture of Data Engineering
Future of Data Engineering
 
Automated Testing for Terraform, Docker, Packer, Kubernetes, and More
Automated Testing for Terraform, Docker, Packer, Kubernetes, and MoreAutomated Testing for Terraform, Docker, Packer, Kubernetes, and More
Automated Testing for Terraform, Docker, Packer, Kubernetes, and More
 

Recently uploaded

Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
FIDO Alliance
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
FIDO Alliance
 

Recently uploaded (20)

Introduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptxIntroduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptx
 
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdfIntroduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
 
ERP Contender Series: Acumatica vs. Sage Intacct
ERP Contender Series: Acumatica vs. Sage IntacctERP Contender Series: Acumatica vs. Sage Intacct
ERP Contender Series: Acumatica vs. Sage Intacct
 
Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024
 
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentation
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!
 
Easier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties ReimaginedEasier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties Reimagined
 
Working together SRE & Platform Engineering
Working together SRE & Platform EngineeringWorking together SRE & Platform Engineering
Working together SRE & Platform Engineering
 
How we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdfHow we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdf
 
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
 
Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024
 
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
 
ADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptxADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptx
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
 
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdfWhere to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream Processing
 
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
 

Deconstructing Functional Programming

  • 2. Watch the video with slide synchronization on InfoQ.com! http://www.infoq.com/presentations /functional-pros-cons InfoQ.com: News & Community Site • 750,000 unique visitors/month • Published in 4 languages (English, Chinese, Japanese and Brazilian Portuguese) • Post content from our QCon conferences • News 15-20 / week • Articles 3-4 / week • Presentations (videos) 12-15 / week • Interviews 2-3 / week • Books 1 / month
  • 3. Presented at QCon San Francisco www.qconsf.com Purpose of QCon - to empower software development by facilitating the spread of knowledge and innovation Strategy - practitioner-driven conference designed for YOU: influencers of change and innovation in your teams - speakers and topics driving the evolution and innovation - connecting and catalyzing the influencers and innovators Highlights - attended by more than 12,000 delegates since 2007 - held in 9 cities worldwide
  • 4. The Heart of Darkness Wednesday, November 13, 13
  • 5. What is Functional Programming? Definitions vary, but tend to involve Higher order functions (HOFs) Absence of effects Wednesday, November 13, 13
  • 6. Higher Order Functions Functions are values Can be passed as arguments and returned as results Function literals are expressions that can be written anywhere an expression can appear Wednesday, November 13, 13
  • 7. Languages with HOFs Smalltalk, Self, Newspeak, Dart, Javascript ... and now even Java (gasp) Wednesday, November 13, 13
  • 8. Languages with Effects Lisp, Scheme, Racket, Clojure, ML, OCaml, F#, Erlang Wednesday, November 13, 13
  • 9. Languages w/o HOFs Backus’ FP, SISAL, the original versions of Erlang ... These are functional languages; in fact FP was the original functional language Wednesday, November 13, 13
  • 10. What is Functional Programming? 1. A style which utilizes HOFs and minimizes effects 2. A cult(ure) 3. All of the above In particular, there is no contradiction with object orientation (see Scala as an example) Wednesday, November 13, 13
  • 11. HOFs/Closures HOFs are awesome. Lambdas even more so. The great classical HOFs: map, filter, reduce They’ve been around since Lisp & Smalltalk (i.e., long before the term FP was introduced) Wednesday, November 13, 13
  • 12. User-defined Control Structures a > b ifTrue:[ a - b]. Wednesday, November 13, 13
  • 13. User-defined Control Structures a > b ifTrue:[ a - b]. A boolean, an object, the target of ... Wednesday, November 13, 13
  • 14. User-defined Control Structures a > b ifTrue:[ a - b]. The method, invoked with ... Wednesday, November 13, 13
  • 15. User-defined Control Structures a > b ifTrue:[ a - b]. The argument, a block/lambda/closure Wednesday, November 13, 13
  • 16. User-defined Control Structures a > b ifTrue:[ a - b]. In class True, ifTrue: evaluates its argument and returns the result. In class False, ifTrue: returns nil. Wednesday, November 13, 13
  • 17. Tail Calls Look ma, no loops: while(b, s) { if b() then {s(); while(b,s)} else null} How to express computation unbounded in time but bounded in space. A language is functional if it supports proper tail calls? Wednesday, November 13, 13
  • 18. Tail Calls What about debugging? Where’s my stack trace? http://gbracha.blogspot.com/2009/12/chased-byones-own-tail.html Wednesday, November 13, 13
  • 19. Hindley-Milner If it typechecks, it works .... ? But error messages are terrible Leaks implementation information Wednesday, November 13, 13
  • 20. Currying All functions take one argument, produce one result Extremely compositional, BUT We lose almost all structure Forced to rely on type system Wednesday, November 13, 13
  • 21. Pattern Matching Nice Allows FPLs to pretend they don’t do dynamic typechecks and casts Usually second class First class patterns are interesting http://gbracha.blogspot.com/2010/05/patterns-of-dynamic-typechecking.html http://gbracha.blogspot.com/2010/06/patterns-as-objects-in-newspeak.html Wednesday, November 13, 13
  • 23. A Monad by any other name would smell ... Wednesday, November 13, 13
  • 24. A Monad by any other name would smell as sweet Wednesday, November 13, 13
  • 25. Ye Highlands and ye Lowlands, Oh, where hae ye been? They hae slain the Earl O' Moray, And laid him on the green. The Bonny Earl O’Moray Wednesday, November 13, 13
  • 26. Ye Highlands and ye Lowlands, Oh, where hae ye been? They hae slain the Earl O' Moray, And Lady Mondegreen. The Bonny Earl O’Moray, revised by Sylvia Wright Wednesday, November 13, 13
  • 27. Ye Highlands and ye Lowlands, Oh, where hae ye been? They hae slain the Earl O' Moray, And Lady Monadgreen. The Bonny Earl O’Moray, revised by me Wednesday, November 13, 13
  • 28. Monad Metaphors, aka Monadgreens Nuclear waste containers Romantic conquests Space Suits Monsters Macros Containers Conversations Black holes Wednesday, November 13, 13
  • 29. Lady Monadgreen’s Curse Once you understand monads, you immediately become incapable of explaining them to anyone else Wednesday, November 13, 13
  • 31. abstract class FlatMappable { FlatMappable(a); flatMap(f); } Wednesday, November 13, 13
  • 32. abstract class Monad { Monad(a); flatMap(f); } Wednesday, November 13, 13
  • 33. abstract class Monad { Monad.unit(a); flatMap(f); } Wednesday, November 13, 13
  • 34. abstract class Monad { Monad.return(a); flatMap(f); } Wednesday, November 13, 13
  • 35. abstract class Monad { Monad.return(a); bind(f); } Wednesday, November 13, 13
  • 36. abstract class Monad { Monad.return(a); operator * (f); } Wednesday, November 13, 13
  • 37. abstract class Monad { Monad.return(a); operator >>= (f); } Wednesday, November 13, 13
  • 38. abstract class FlatMappable { FlatMappable(a); flatMap(f); // map, then flatten } Wednesday, November 13, 13
  • 39. abstract class Mappable { Mappable(a); map(f); } abstract class MappableAndFlattenable extends Mappable { MappableAndFlattenable(a): super(a); flatten(); } Wednesday, November 13, 13
  • 40. abstract class FlatMappable extends MappableAndFlattenable { FlatMappable(a): super(a); flatMap(f) => map(f).flatten(); } Wednesday, November 13, 13
  • 41. What’s the Contract Like? Sample Clause: new Mappable(x).map(f) == new Mappable( f(x)); Wednesday, November 13, 13
  • 42. What’s the Contract Like? Sample Clause: new FlatMappable(x).flatMap(f) == f(x); Wednesday, November 13, 13
  • 43. What’s the Contract Like? Sample Clause: new C(x).flatMap(f) == f(x); for any class C that implements the contract Wednesday, November 13, 13
  • 44. The Whole Contract new C(x).flatMap(f) == f(x); c.flatMap((x)=> new C(x)) == c; c.flatMap((x)=> f(x).flatMap(g)) == c.flatMap(f).flatMap(g); Wednesday, November 13, 13
  • 45. FlatMappable is more useful than you think Collections of all kinds: in-memory, databases, streams “Singleton collections”: functions, continuations, futures Wednesday, November 13, 13
  • 46. A simple expression e.b.c what could possibly go wrong? Wednesday, November 13, 13
  • 47. A simple expression e.b.c what could possibly go wrong? e could be null. Ok e == null ? null : e.b.c Wednesday, November 13, 13
  • 48. A simple expression e.b.c what could possibly go wrong? e could be null. Ok e == null ? null : e.b.c oops, e.b could be null e == null ? null : e.b == null ? null : e.b.c Wednesday, November 13, 13
  • 49. A simple expression e == null ? null : e.b == null ? null : e.b.c what about side effects? (var it = e) == null ? null : (var ab = it.b) == null ? null : ab.c Wednesday, November 13, 13
  • 50. Safe Navigation Operator e?.b?.c e?.id(a1, .. an) is sugar for e.ifNotNull((x) => x.id(a1, .. an)) where we define class Object { ifNotNull(f) => this == null ? null : f(this); } Wednesday, November 13, 13
  • 51. Promise Pipelining e <- id(a1, .. an) is sugar for e.then((x) => x.id(a1, .. an)) where we define class Object { then(f) => f(this); } Wednesday, November 13, 13
  • 52. Safe Promise Pipelining e <- id(a1, .. an) is sugar for e.then((x) => x.id(a1, .. an)) where we define class Object { then(f) => this == null ? null : f(this); } Wednesday, November 13, 13
  • 53. Async message pipelining e <- id(a1, .. an) is sugar for e.then((x) => x.id(a1, .. an)) where we define class Object { then(f) => Future.immediate(this).then(f); } Wednesday, November 13, 13
  • 54. Scalar operators extended pointwise to collections e.* id(a1, .. an) is sugar for e.map((x) => x.id(a1, .. an)) where we define class Object { map(f) => f(this); } [‘abc’, ‘de’, ‘wxyz’].* length evaluates to [3, 2, 4] Wednesday, November 13, 13
  • 55. Scalar operators extended pointwise to collections e.* id(a1, .. an) is sugar for e.map((x) => x.id(a1, .. an)) where we define class Object { map(f) => this == null ? null : f(this); } [‘abc’, null, ‘wxyz’].* length evaluates to [3, null, 4] Wednesday, November 13, 13
  • 57. Is There a Pattern Here? The Curse of the Monadgreens prevents me from discussing this further In practice, we see generalizations of set notation rather than navigation LINQ is an example. However, you didn’t need to have even heard of monads to invent LINQ. Just look at Smalltalk’s collection API, Glorp etc. http://gbracha.blogspot.com/2011/01/maybemonads-might-not-matter.html Wednesday, November 13, 13
  • 58. The Killer App for FP? Wednesday, November 13, 13
  • 60. The Killer App for FP? Live Programming http://gbracha.blogspot.com/2012/11/debug-mode-is-only-mode.html http://gbracha.blogspot.com/2013/04/making-methods-live.html https://www.youtube.com/watch?v=74WqdS_58uY Wednesday, November 13, 13
  • 61. Summary Much to learn from FP FP and OOP are often complementary Filter out propaganda Separate cultural baggage from core values Wednesday, November 13, 13
  • 62. The Newspeak eye on slide 5 was designed by Victoria Bracha and is used by permission. The cartoon on slide 2 comes from http://xkcd.com/ 1270/ and is licensed by xkcd.com under http:// creativecommons.org/licenses/by-nc/2.5/ The rose on slide 16 is by Kikuo Teranishi and licensed under http://creativecommons.org/licenses/by-sa/3.0/ deed.en Wednesday, November 13, 13
  • 63. Watch the video with slide synchronization on InfoQ.com! http://www.infoq.com/presentations/functional -pros-cons