Concept Flow - Lambda with receiver concept
Define lambda with receiver
Call lambda on receiver object
Inside lambda: 'this' refers to receiver
Execute lambda body using receiver's members
Return result or Unit
End
The lambda is defined to work with a receiver object, so inside the lambda, 'this' means the receiver. When called, the lambda runs using the receiver's context.