We would like to thank MuleSoft Ambassador Joshua Erney for their contribution to this developer tutorial.
In the previous tutorial, we learned about variables, Boolean operators, flow control, and functions. For this tutorial, we’ll focus on a complex topic: lambdas (anonymous functions). We will also go through:
Using named functions can be easier to understand and follow with the code. For this reason, you may not see a lot of lambdas explicitly declared in a DataWeave script. However, it is useful for you to get familiar with this concept because a lot of the DataWeave functions can be used with lambdas. Do not worry if you are not able to follow all the explanations in this tutorial, it is an abstract topic after all. You can revisit this tutorial as you continue your DataWeave learnings and the examples will look more and more familiar to you.
If this is your first time learning about DataWeave, we encourage you to check out this other tutorial to learn about the online DataWeave Playground. With this tool, you will be able to try out the scripts you will see in this tutorial right from your browser.
DataWeave provides multiple ways to create functions. Just like we have named functions, we have functions without names (or anonymous functions), called lambdas. A lambda is a value in DataWeave, just like a String, an Object, or a Boolean. The syntax for a lambda is like so:
Here’s how we might try to use a lambda in a DataWeave script. However, this script will result in an error.
You may be wondering why the output was not 5
. Why didn’t the function execute and return 2 + 3
? Remember that functions represent functionality and therefore so do lambdas. They don’t do anything unless you call them, they’re just values. The lambda never executes; it’s describing functionality, not executing it. Because of this, 5
is not passed to the writer. Instead, DataWeave sends () -> 2 + 3
as a value (just like a String). In turn, the writer tries to serialize it as JSON, but JSON does not support functions, hence the error.
How would we get the script to return 5
? Recall that in order to call named functions you need to use the following syntax:
But lambdas don’t have names, that’s the whole point! In order to force a lambda to execute, we surround it in parentheses and append ()
to the end.
The pair of parentheses at the end of the lambda works the same as when you call a named function. In other words, those parentheses are where you pass arguments to the function if you have any.
If this syntax seems awkward, it’s because we’re using lambdas in a way they’re not meant to be used. If you needed to accomplish the above script, you’d be better off having the body as 2 + 3
. What are lambdas good for? Because lambdas are values just like Strings, we can assign them to variables. This effectively gives a name to an unnamed function and allows us to use a lambda just like a normal function.
But that’s not very useful either, we already have a nice syntax for the same thing with the fun
keyword. The usefulness of lambdas becomes apparent when we combine two ideas:
In other words, lambdas become useful when you want to pass functions as arguments to other functions, or return a function from another function. A function that does this is referred to as a higher-order function (HOF). HOFs are easier to understand once you’re familiar with how to use one. Here’s an example of using a HOF, filter
, to make sure an Array only contains odd numbers:
The filter
function takes two arguments: an Array (numbers
) and a lambda. In situations like these, it’s important to specify what the lambda should do as well. In the case of filter
, the lambda should take in two arguments: an item in the Array (n
), and the index of that particular item (idx
). It should return a Boolean. This Boolean value is used to determine if a value makes it to the returned Array. It is the responsibility of the receiving function to pass arguments into the lambda you specified, and do something with the return value. Let’s dig into how filter
works to gain a deeper understanding of HOFs.
filter
uses the lambda on each item of the Array to determine whether it should be in the returned Array. If filter
calls the lambda with 1
, it returns true
, so 1
makes it to the output Array. If filter
calls the lambda with 2
, it returns false
, so 2
does not make it to the output Array. This goes on until the last item of the Array is reached, then the final Array is returned.
While the code above is ok, it’s a little inconvenient. We had to give a name to the function in order to use it, even though we were never going to use it again. This is exactly where lambdas come in. They pass functions to other functions without the inconvenience of having to think up a name for them.
So far, we’ve been calling filter
using prefix notation. We learned in the previous tutorial the difference between the prefix and infix notations. In summary, with prefix notation, the function name comes before the arguments (add(1,2)
). Meanwhile, the infix notation has the following syntax: <arg1> <function_name> <arg2>
. Here’s how the code above would look if we called filter using infix notation:
This may not seem like a great advantage, but it allows you to easily chain together functions that take in and return the same data type. For example, we can string together two filter
functions in a way that is easy to read and understand:
In this case, the Array is filtered on whether or not the value is an odd number, then filtered on whether or not the number is greater than 3. Notice the additional parentheses around the first lambda. The parentheses around the lambdas help DataWeave determine that the second call to filter
is not part of the first filter
’s lambda expression.
HOFs are so prolific in DataWeave’s library that there are additional syntax features that make them easier to use. For functions that DataWeave provides, you can represent the first, second, and third arguments passed to the lambda as $
, $$
, and $$$
, respectively. We’ll refer to this as the dollar-sign syntax. When you use the dollar-sign syntax, you do not need to specify the arguments of the lambda when you pass it to the function. Here’s our odd number filter example from earlier using the dollar-sign syntax:
The dollar-sign syntax gives us all the same functionality as when we reference something by its name. This means we can chain selectors and indexes right on the dollar sign in order to query data.
In this tutorial, we learned:
filter
functionIt’s ok if lambdas are a bit hard to understand, it is a complex topic. The important part is to keep trying to learn more every day. You can always revisit this tutorial at a later time and it will slowly start making sense. In the next tutorial, we’ll talk about the type parameters, or generics (as known in other programming languages).
Click on the Next button below to continue to the next tutorial.
Start your 30-day free trial of the #1 platform for integration, APIs, and automation. No credit card required. No software to install.
Questions? Ask an expert.