Search Results

4
votes

When to use closure?

Typically, if one doesn't have closures, one must define a class to carry with it the equivalent of the closure's environment, and pass it around. For example, in a language like Lisp, one …
1
vote

Functional programming: immutability etc.

"Immutable" means exactly that: it doesn't change. The way functional programs do updates is by passing around new things. An existing value never changes: you just build a new value and pa …
0
votes

How do classes help you manage large applications?

Two things. The first is the idea that a class is an opaque domain entity. When done correctly, object-oriented programs introduce a layer of abstraction: at the n …