Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / lambda

Lambda

lambda

Great Reads

by Rahul Rajat Singh
This article discusses delegates and how to write delegate handlers using functions, anonymous functions and Lambda expressions.
by TheCannyCoder
Java 8 is perhaps one of the most exciting editions of the Java language in recent times. One of the headline features is support for functional programming which is the focus of this blog. The support comes mostly in three features: Support for [work pipeline] streams. Streams allow us to process d
by John Bandela
This post discusses another alternative to lambda move capture.
by John Pravin
Asynchronous Programming with Task Parallel Library.

Latest Articles

by Rahul Rajat Singh
This article discusses delegates and how to write delegate handlers using functions, anonymous functions and Lambda expressions.
by TheCannyCoder
Java 8 is perhaps one of the most exciting editions of the Java language in recent times. One of the headline features is support for functional programming which is the focus of this blog. The support comes mostly in three features: Support for [work pipeline] streams. Streams allow us to process d
by John Bandela
This post discusses another alternative to lambda move capture.
by John Pravin
Asynchronous Programming with Task Parallel Library.

All Articles

Sort by Score

lambda 

by John Bandela
This post discusses another alternative to lambda move capture.
by OwenDavies
A fix for people experiencing the same issue with AutoMapper 3.2.1
by TheCannyCoder
Reductions and Short-Circuiting Operations
by Jeremy Likness
A primer on using LINQ to wring strongly typed queries directly in code
by Trần_Tuấn_Anh
When working with AWS Lambda functions, managing versions and aliases is essential for maintaining and deploying code efficiently. Lambda versions and aliases offer powerful ways to handle your function deployments, rollbacks, and environment-specific configurations.
by Dev Leader
An example in refactoring code.
by Vlad Neculai Vizitiu
Mocking/stubbing lambda expressions to have a bit more control over our unit tests
by Rion Williams
C# local functions and how they can be used to make code more readable
by James A. Brannan
In this tutorial, you create a simple Python client that sends records to an AWS Kinesis Firehose stream.
by Afzaal Ahmad Zeeshan
This article primarily focuses on the basics of serverless computing and how they emerged. It also talks about other changes such as NoOps. Finally, a sample Azure Function is shown as an example. This is just the introduction post. In future posts, I will give more explanation for Functions.
by Trần_Tuấn_Anh
Functional interfaces are a core concept in Java, particularly in the context of functional programming. But what exactly are they, and why should you care about them?
by Trần_Tuấn_Anh
Lambda functions are a powerful feature introduced in Java 8 that revolutionize how you write and manage code. They allow for more concise and readable code, especially when dealing with functional interfaces.