InfoQ Homepage Presentations Playframework Scala: Democratizing Functional Programming for Web Developers
Playframework Scala: Democratizing Functional Programming for Web Developers
Summary
Sadek Drobi introduces the Play Framework for developers interested in doing web programming in a functional language.
Bio
Sadek Drobi is co-creator of Play2 (www.playframework.org) web server and framework.
About the conference
Last year was sci-fi themed around The Hitchikers Guide to the Galaxy and the magical ’42’ number. This year we go for charm and a rich history with the Tapis Rouge salons.
Community comments
Method Chaining vs Function Composition
by Faisal Waris,
Method Chaining vs Function Composition
by Faisal Waris,
Your message is awaiting moderation. Thank you for participating in the discussion.
Still confused about how functions were composed in the samples provided in the talk.
I know that F# has predefined function composition operators '>>' and '<<' and you can also use the pipeline '|>' operator to composed partially applied functions but I did not see the use of any such operators in the examples given.
Also I believe not all '.' chaining is method chaining. For example, LINQ's use of the '.' is actually function composition.