This is my learning notes from the course - Mastering C++ Standard Library Features.
Lambdas as Local Functions
- Use cases for lambdas as local functions
- IIEF idiom
Why Lambdas as Local Functions?
- Reduce code repetition without exposing additional functions
- Achieve
const
correctness with the IIFE idiom