Chapter 7. Structuring an application with functions

 

This chapter covers

  • Partial application and currying
  • Getting around the limitations of method type inference
  • Thinking of dependencies on a per-function level
  • Modularizing and composing an application
  • Reducing lists to single values

Structuring a complex, real-world application is no easy task. There are entire books written on the subject, so this chapter by no means aims to provide a comprehensive view. We’ll focus on the techniques that you can use to modularize and compose an application consisting entirely of functions, and how the result compares to how this is usually done in OOP.

We’ll get there gradually. First, you’ll need to learn about a classic but fairly low-level functional technique called partial application. This allows you to write highly general functions whose behavior is parameterized, and then supply those parameters, obtaining more specialized functions that have the parameters given so far “baked in.”

We’ll then look at how partial application can be used in practice to first specify configuration arguments that are available at startup, and purely runtime arguments later, as they’re received.

Finally, we’ll look at how you can take the approach one step further and use partial application for dependency injection, to the point of composing an entire application out of functions, without losing any of the granularity or decoupling you’d expect when composing it with objects.

7.1. Partial application: supplying arguments piecemeal

 
 

7.2. Overcoming the quirks of method resolution

 

7.3. Curried functions: optimized for partial application

 
 
 

7.4. Creating a partial-application-friendly API

 
 
 

7.5. Modularizing and composing an application

 
 
 

7.6. Reducing a list to a single value

 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage