Y
Hacker News
new
|
ask
|
show
|
jobs
by
pjtr
634 days ago
Is "let-over-lambda" (variable capture / closure) not possible in F#? Is that not a form of implicit dependency injection?
2 comments
Zerot
634 days 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.
link
fire_lake
634 days ago
Yes it’s possible.
link