|
|
|
|
|
by mbell
4512 days ago
|
|
A lambda doesn't capture anything, it's just an anonymous function. A lambda can be a closure, but it doesn't have to be. Closures come in two primary flavors, bind by value or bind by reference. Some languages implement only one of these, some implement both, some bind in completely different ways (e.g. lazy binding in Haskell). |
|