From 9a6e8b16358cafda1042ce2c0ef1b591fe6ef9f0 Mon Sep 17 00:00:00 2001 From: Snahal Kumar <77937488+snahal04@users.noreply.github.com> Date: Fri, 23 Jun 2023 01:08:00 +0530 Subject: [PATCH] C++ Lambdas link (#4084) The video link is no longer available on youtube. It is updated with another link which I have personally reviewed and has good-quality content of 18 minutes in English has high viewers and is one of the most popular C++ channels on youtube. Also, a free e-book of lambda is provided by the content creator. --- src/data/roadmaps/cpp/content/103-functions/100-lambda.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/cpp/content/103-functions/100-lambda.md b/src/data/roadmaps/cpp/content/103-functions/100-lambda.md index e893e019a..a82366e70 100644 --- a/src/data/roadmaps/cpp/content/103-functions/100-lambda.md +++ b/src/data/roadmaps/cpp/content/103-functions/100-lambda.md @@ -61,5 +61,5 @@ updateDays(30); // expiresInDays = 30 Note that, when using the capture by reference, any change made to the captured variable *inside* the lambda function will affect its value in the surrounding scope. -- [Lambdas in C++](https://youtu.be/mwgmbbz0y8c) -- [Lambda Expressions](https://en.cppreference.com/w/cpp/language/lambda) \ No newline at end of file +- [Lambdas in C++](https://youtu.be/MH8mLFqj-n8) +- [Lambda Expressions](https://en.cppreference.com/w/cpp/language/lambda)