Let's say I have this code
let identifier = spaces_surrounded (many1Satisfy isLetter)
I was wondering if it there was any native F# function that allowed me to refactor it to
let identifier = spaces_surrounded $ many1Satisfy isLetter
that is, something such as
let ($) f1 f2 = f1 (f2)
(that is if I am not mistaken, my Haskell skills are not too sharp..).
See Question&Answers more detail:os