In this post I’m looking into how partial function application (or currying) works behind the scenes in F#.
F# Swap
Reading about functional programming, I got curious the other day: one of the canonical examples is swapping the elements in a tuple but what exactly happens internally? After all, whatever language is used, eventually it will be translated to native code. F# is very easy to work with in this sense, because it will be …