16 Partial functions

 

After reading this lesson, you will be able to

  • Implement partial functions to abstract commonalities between functions
  • Create new functions by composing partial functions
  • Use a try-catch expression to handle exceptions

Now that you’ve learned about pattern matching, you’ll discover partial functions and how they relate to pattern matching in this lesson. Partial functions are functions that are defined only for some input. You’ll see how they can be useful to abstract commonalities between functions and how you can compose them to create more complex functionalities. Finally, you’ll see how you can use partial functions to catch and handle exceptions. In the capstone, you’ll use partial functions to define the routes of your HTTP server.

16.1 Partial functions

Suppose you need to compute operations on integers. In particular, you want to calculate the square root of an integer. But this operation is defined only for nonnegative numbers. When dealing with a negative integer, you need to either return the negative value or return zero, depending on your use case. You could use pattern matching and define two functions.

16.1.1 Implementing a partial function

 
 

16.1.2 Function composition

 
 
 

16.2 Use case: Exception handling

 
 
 

Summary

 
 
 

Answers to quick checks

 
 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage