Skip to main content

2 posts tagged with "Lambda Expressions"

Our Lambda Expressions tag archive page features a wide range of articles and tutorials that delve into the intricacies of Lambda Expressions in various programming languages.

View All Tags

Exploring Kotlin's Higher-Order Functions

· 12 min read
Engineering Team

This tutorial will provide a comprehensive overview of Kotlin's higher-order functions. Higher-order functions are a powerful feature in Kotlin that allow functions to be treated as first-class citizens. This means that functions can be passed as arguments, returned from other functions, and assigned to variables. By understanding and utilizing higher-order functions, developers can write more concise and expressive code.

Exploring Kotlin's Lambda Expressions

· 7 min read
Engineering Team

In this tutorial, we will dive deep into Kotlin's lambda expressions. Lambda expressions are a powerful feature in Kotlin that allows us to write concise and expressive code. We will explore the syntax of lambda expressions, function types, higher-order functions, capturing variables, type inference, and provide examples of how to use lambda expressions in filtering, sorting, mapping, and grouping lists.