The Partially applied functions are the functions which are not applied on all the arguments defined by the stated function i.e, while invoking a function, we can supply some of the arguments and the left arguments are supplied when required. we call a function we can pass less arguments in it and when we pass less arguments it does not throw an exception. these arguments which are not passed to function we use underscore( _ ) as placeholder. Some important points:
- Partially applied functions are helpful in minimizing a function which accepts many arguments to a function that accepts only some arguments.
- It can replace any number of arguments defined by a function.
- It is easier for users to utilize this method.
Syntax:
val multiply = (a: Int, b: Int, c: Int) => a * b * c
// less arguments passed
val f = multiply(1, 2, _: Int)
As we can see in above syntax we defined a normal function multiply which have three arguments we pass less arguments (two). we can see it does not throw an exception that is partially applied function. Example:
Scala
object Applied
{
def main(args : Array[String])
{
def Book(discount : Double, costprice : Double)
: Double =
{
( 1 - discount/ 100 ) * costprice
}
val discountedPrice = Book( 25 , _: Double)
println(discountedPrice( 400 ))
}
}
|
Here, the discount is passed in the argument and costprice part is left empty which can be passed later when required so, the discounted price can be calculated any number of times. Some more examples of Partially applied functions:
- A partially applied function can be obtained even when not applied on any of the arguments defined. Example:
Scala
object Applied
{
def main(args : Array[String])
{
def Mul(x : Double, y : Double)
: Double =
{
x * y
}
val r = Mul _
println(r( 9 , 8 ))
}
}
|
- Partially applied functions can be utilized to replace any number of parameters. Example:
Scala
object Applied
{
def main(args : Array[String])
{
def Mul(x : Double, y : Double, z : Double)
: Double =
{
x * y * z
}
val r = Mul( 7 , 8 , _ : Double)
println(r( 10 ))
}
}
|
- Currying approach can be utilized in Partially applied functions to transmit a function with multiple arguments into multiple functions, where each function takes only one argument. Example:
Scala
object curr
{
def main(args : Array[String])
{
def div(x : Double, y : Double)
: Double =
{
x / y
}
val m = (div _ ).curried
println(m( 72 )( 9 ))
}
}
|
- Here, currying approach breaks the given function into two functions, where each function takes one parameter so, you need to pass one value for each of the functions and get the desired output.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
11 Oct, 2022
Like Article
Save Article