top | item 41633501

(no title)

pjtr | 1 year ago

Is "let-over-lambda" (variable capture / closure) not possible in F#? Is that not a form of implicit dependency injection?

discuss

order

Zerot|1 year ago

Closures are possible, yeah. But F# also has partial application(and currying). So you don't need to use a closure to do this.

fire_lake|1 year ago

Yes it’s possible.