DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
The Latest "Software Integration: The Intersection of APIs, Microservices, and Cloud-Based Systems" Trend Report
Get the report
  1. DZone
  2. Coding
  3. Languages
  4. Higher-Order Functions in Scala

Higher-Order Functions in Scala

Let's take a look at how to use higher-order functions in Scala.

Jyoti Sachdeva user avatar by
Jyoti Sachdeva
·
Dec. 19, 18 · Tutorial
Like (7)
Save
Tweet
Share
48.98K Views

Join the DZone community and get the full member experience.

Join For Free

In this blog, I’m going to explain higher-order functions.

A higher-order function takes other functions as a parameter or returns a function as a result.

This is possible because functions are a first-class value in Scala. What does that mean?

It means that functions can be passed as arguments to other functions, and functions can return other functions.

The map function is a classic example of a higher order function.

val list = List(1,2,3)


Let’s define a function that doubles each value that is given to it.

def doubleValue = (x: Int) => x * x
doubleValue: Int => Int

val doubledList = list.map(x => doubleValue(x))


This example will call List(1,2,3).map(x => doubleValue(x)) and gives us a list with values (1, 4, 9). The function map will be called on each element of the list that will be passed to doubleValue.

We can also give it an anonymous function.

List(1,2,3) map (x => x + 1)


Amap is a function that takes another function(x => x+1) and a list as its arguments and applies the given function to all the elements of the list.

Create Our Own Higher-Order Function:

Example 1

def addition(f: (Int, Int) => Int,a: Int, b:Int): Int = f(a,b)


This addition takes a higher-order function as an input, which, in turn, takes two integers as an input and returns an integer.

val squareSum = (x: Int, y: Int) => (x*x + y*y)
val cubeSum = (x: Int, y: Int) => (x*x*x + y*y*y)
val intSum = (x: Int, y: Int) => (x + y)

val squaredSum = addition(squareSum, 1, 2)
val cubedSum = addition(cubeSum, 1, 2)
val normalSum = addition(intSum, 1, 2)


Note that:

  • addition(squareSum, 1, 2) will call squareSum(1,2).
  • addition(cubeSum, 1, 2) will call cubeSum(1,2).
  • addition(intSum, 1, 2) will call intSum(1,2).

Example 2

def applyPatternToText(text:String,f:String => String): String = {
f(text)
}


The applyPatternToText function takes another function as a parameter.

def appendTag(data:String): String => String = {
_ : String => s"$data"
}


The appendTag function returns a function itself.

val message = "scala"
println( applyPatternToText(message, appendTag(message)))


This will call applyPatternToText (“scala”,appendTag(“scala”)).

f:String => String will be replaced by appendTag(“scala”).

 appendTag(“scala”) will print scala.

Example 3

Let’s take another example to find the sum of a list and product of a list using the higher-order function:

def operateList(list: List[Int], f: (Int, Int) => Int, operation: String): Int = {
def inner(list: List[Int], result: Int): Int = {
list match {
case head :: tail => inner(tail, f(head, result))
case Nil => result
}
}

operation.toLowerCase match {
case "product" => inner(list, 1)
case "sum" => inner(list, 0)
}
}


The operateList (List(1,2,3),(a, b) => a + b, “sum”) will call the inner(List(1,2,3),0).

After match condition, the next call will be inner(List(2,3),f(1,0)), which will give inner(List(2,3),1).

The next call would be inner(List(3),f(2,1)), which will give inner(List(3),3). Then, the next call would be inner(Nil,f(3,3)), which will give inner(Nil,6).

The final result would be 6!

Scala (programming language)

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • 5 Steps for Getting Started in Deep Learning
  • 11 Observability Tools You Should Know
  • Testing Level Dynamics: Achieving Confidence From Testing
  • 10 Most Popular Frameworks for Building RESTful APIs

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: