Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Elixir Cookbook

You're reading from   Elixir Cookbook Unleash the full power of programming in Elixir with over 60 incredibly effective recipes

Arrow left icon
Product type Paperback
Published in Feb 2015
Publisher Packt
ISBN-13 9781784397517
Length 236 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Paulo Pereira Paulo Pereira
Author Profile Icon Paulo Pereira
Paulo Pereira
Arrow right icon
View More author details
Toc

Table of Contents (16) Chapters Close

Elixir Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Command Line FREE CHAPTER 2. Data Types and Structures 3. Strings and Binaries 4. Modules and Functions 5. Processes and Nodes 6. OTP – Open Telecom Platform 7. Cowboy and Phoenix 8. Interactions Installation and Further Reading Index

Defining functions with default arguments


In Elixir, named functions (defined with the def macro) can accept arguments and sometimes, it is convenient to assume them as optional by defining a default value or expression. Default values for function arguments are defined using \\ after the argument name.

Note

If we define a foo(a, b, c \\ 0) function and c has a default value, although the function can be invoked as foo(1,3) with arity 2, the function foo/3 is executed, in this case, as foo(1,3,0). We don't explicitly pass a value for c but it will take the defined value, in this case, 0.

Getting ready

Load the Defaults file module inside IEx and open the file defining the module (defaults.ex) inside your favorite code editor:

> iex defaults.ex
[Defaults] 

How to do it…

To define functions with default arguments, follow these steps:

  1. Define a sum function in the Defaults module by adding the following code to defaults.ex:

    def sum(a, b \\ 1, c \\ 1) do
      a + b + c
    end
  2. Save the file and reload it...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime
Visually different images